diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-27 17:07:55 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-27 17:07:55 +0000 |
commit | d4d053f0e35a3ba13e8184fceca0429b3daf0ccf (patch) | |
tree | 89209292c2e1c58aceb44dd6f58777a689eaff1a | |
parent | dae44b29f881861ec6a53bc2b944ec69b2cb7de7 (diff) | |
download | ikiwiki-d4d053f0e35a3ba13e8184fceca0429b3daf0ccf.tar ikiwiki-d4d053f0e35a3ba13e8184fceca0429b3daf0ccf.tar.gz |
re-emit unprocessed preprocessor directives in full, in case they're really
wikilinks with spaces
-rw-r--r-- | IkiWiki/Render.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index c7849a2dd..be9403618 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -138,7 +138,7 @@ sub preprocess ($$$) { #{{{ return $ret; } else { - return "[[$command not processed]]"; + return "[[$command $params]]"; } }; |