]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki.pm
web commit by joey
[ikiwiki.git] / IkiWiki.pm
index 9a7b4fe911a284f7a11dfc19060ffbddef2b2401..960d26de93f94e4e95a44098b2b616a3b089f5a2 100644 (file)
@@ -16,9 +16,6 @@ sub checkconfig () { #{{{
        if ($config{rss} && ! length $config{url}) {
                error("Must specify url to wiki with --url when using --rss\n");
        }
-       if ($config{hyperestraier} && ! length $config{url}) {
-               error("Must specify --url when using --hyperestraier\n");
-       }
        
        $config{wikistatedir}="$config{srcdir}/.ikiwiki"
                unless exists $config{wikistatedir};
@@ -40,6 +37,12 @@ sub checkconfig () { #{{{
                        error("Failed to load plugin $mod: $@");
                }
        }
+
+       if (exists $hooks{checkconfig}) {
+                foreach my $id (keys %{$hooks{checkconfig}}) {
+                        $hooks{checkconfig}{$id}{call}->();
+                }
+        }
 } #}}}
 
 sub error ($) { #{{{