]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Render.pm
* Split off an IkiWiki.pm out of ikiwiki and have all the other modules use
[git.ikiwiki.info.git] / IkiWiki / Render.pm
index f9730193b42c26ef3cacfd1eac51cddc73d794be..35e279a68232c7b0a6e6fb353d3af448cd35df94 100644 (file)
@@ -5,6 +5,7 @@ package IkiWiki;
 use warnings;
 use strict;
 use File::Spec;
+use IkiWiki;
 
 sub linkify ($$) { #{{{
        my $content=shift;
@@ -141,7 +142,7 @@ sub preprocess ($$) { #{{{
                        return $plugins{preprocess}{$command}->(page => $page, %params);
                }
                else {
-                       return "[[bad directive $command]]";
+                       return "[[$command not processed]]";
                }
        };