]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki.pm
extend the 'tag' test to cover auto-creation of tag pages
[ikiwiki.git] / IkiWiki.pm
index 926d42a497159845ae8ab94c62a054374a61d468..93d2c326d300209cf8f6af51905ec34bccd80b64 100644 (file)
@@ -544,7 +544,7 @@ sub checkconfig () {
                error(gettext("Must specify url to wiki with --url when using --cgi"));
        }
 
-       if (length $config{url}) {
+       if (defined $config{url} && length $config{url}) {
                eval q{use URI};
                my $baseurl = URI->new($config{url});