]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Render.pm
bugnum
[ikiwiki.git] / IkiWiki / Render.pm
index e97f46775f47a1a72b45de339aa7ac46ab1c4e7d..58556148f21fa216f04aaa3a827794384e6db2d7 100644 (file)
@@ -97,11 +97,6 @@ sub preprocess ($$$) { #{{{
                if (length $escape) {
                        return "[[$command $params]]";
                }
-               elsif ($preprocessing{$page}) {
-                       # Avoid loops of preprocessed pages preprocessing
-                       # other pages that preprocess them, etc.
-                       return "[[$command would cause preprocessing loop]]";
-               }
                elsif (exists $hooks{preprocess}{$command}) {
                        # Note: preserve order of params, some plugins may
                        # consider it significant.
@@ -129,17 +124,21 @@ sub preprocess ($$$) { #{{{
                                        push @params, $val, '';
                                }
                        }
-                       $preprocessing{$page}=1;
+                       if ($preprocessing{$page}++ > 10) {
+                               # Avoid loops of preprocessed pages preprocessing
+                               # other pages that preprocess them, etc.
+                               return "[[$command preprocessing loop detected on $page at depth $preprocessing{$page}]]";
+                       }
                        my $ret=$hooks{preprocess}{$command}{call}->(
                                @params,
                                page => $page,
                                destpage => $destpage,
                        );
-                       delete $preprocessing{$page};
+                       $preprocessing{$page}--;
                        return $ret;
                }
                else {
-                       return "[[$command not processed]]";
+                       return "[[$command $params]]";
                }
        };