]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki.pm
oops
[ikiwiki.git] / IkiWiki.pm
index 6e03121c078242c9ef35d2d050224b7f3d79c3ff..4368870b837f26d4f9ee9891b1dcfd717a8a35a7 100644 (file)
@@ -539,12 +539,7 @@ sub beautify_url ($) { #{{{
        if ($config{usedirs}) {
                $url =~ s!/index.$config{htmlext}$!/!;
        }
-
-       # Ensure url is not an empty link, and
-       # if it's relative, make that explicit to avoid colon confusion.
-       if ($url !~ /\//) {
-               $url="./$url";
-       }
+       $url =~ s!^$!./!; # Browsers don't like empty links...
 
        return $url;
 } #}}}