From d7a4fc4aa7275c7db1c35995f343b148a2f99705 Mon Sep 17 00:00:00 2001 From: jomae Date: Fri, 24 May 2024 17:09:30 +0000 Subject: [PATCH] 1.6.1dev: follow-up to r17236, remove include statement with inline-if in query_results.html (refs #13242) git-svn-id: http://trac.edgewall.org/intertrac/log:/branches/1.6-stable@17802 af82e41b-90c4-0310-8c96-b1721e28e2e2 --- trac/ticket/templates/query_results.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/trac/ticket/templates/query_results.html b/trac/ticket/templates/query_results.html index 1927ac4100..a34dbddcb4 100644 --- a/trac/ticket/templates/query_results.html +++ b/trac/ticket/templates/query_results.html @@ -34,7 +34,9 @@ # endset

${tag_("Results %(num)s", num=numresults)}

# endif - # include 'page_index.html' if paginator.show_index + # if paginator.show_index: + # include 'page_index.html' + # endif # macro group_heading(groupname, results) # if groupname is not none: @@ -199,5 +201,7 @@

# endfor # endwith - # include 'page_index.html' if paginator.show_index + # if paginator.show_index: + # include 'page_index.html' + # endif