]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki.pm
responses du jour
[ikiwiki.git] / IkiWiki.pm
index 61725ab84dc6acf2064189f8f9d711681d3499a8..4869b3ef3b32fee7a0ed2ab4cda7221461302b1e 100644 (file)
@@ -67,6 +67,7 @@ sub defaultconfig () { #{{{
        locale => undef,
        sslcookie => 0,
        httpauth => 0,
+       userdir => "",
 } #}}}
    
 sub checkconfig () { #{{{
@@ -354,7 +355,7 @@ sub baseurl (;$) { #{{{
 sub abs2rel ($$) { #{{{
        # Work around very innefficient behavior in File::Spec if abs2rel
        # is passed two relative paths. It's much faster if paths are
-       # absolute! (Debian bug #376658)
+       # absolute! (Debian bug #376658; fixed in debian unstable now)
        my $path="/".shift;
        my $base="/".shift;