]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki.pm
* The first git commit legitimately has no parents. Avoid recentchanges
[ikiwiki.git] / IkiWiki.pm
index 1c87831879afd5f154983123d3da1b7b188758ee..5ae360ad0ee32d3068a64a5e97cc742176dada4e 100644 (file)
@@ -563,7 +563,7 @@ sub htmllink ($$$;@) { #{{{
 
                if (! $destsources{$bestlink}) {
                        return $linktext unless length $config{cgiurl};
-                       return "<span><a href=\"".
+                       return "<span class=\"createlink\"><a href=\"".
                                cgiurl(
                                        do => "create",
                                        page => pagetitle(lc($link), 1),
@@ -826,6 +826,11 @@ sub enable_commit_hook () { #{{{
 } #}}}
 
 sub loadindex () { #{{{
+       %oldrenderedfiles=%pagectime=();
+       if (! $config{rebuild}) {
+               %pagesources=%pagemtime=%oldlinks=%links=%depends=
+                       %destsources=%renderedfiles=%pagecase=();
+       }
        open (my $in, "<", "$config{wikistatedir}/index") || return;
        while (<$in>) {
                $_=possibly_foolish_untaint($_);