From: joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Date: Sat, 28 Oct 2006 22:24:18 +0000 (+0000)
Subject: fix a bug
X-Git-Tag: 1.32~22
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/74b5fb09aae8166b3614c206a9e7e4a227cd9a16?ds=inline

fix a bug
---

diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm
index da5a5510b..f59e54f29 100644
--- a/IkiWiki/Render.pm
+++ b/IkiWiki/Render.pm
@@ -163,6 +163,9 @@ sub scan ($) { #{{{
 		# Preprocess in scan-only mode.
 		preprocess($page, $page, $content, 1);
 	}
+	else {
+		will_render($file, $file, 1);
+	}
 } #}}}
 
 sub render ($) { #{{{