]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 761230: The server push page no longer displays all debug data
authorFrédéric Buclin <LpSolit@gmail.com>
Thu, 7 Jun 2012 21:33:17 +0000 (23:33 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Thu, 7 Jun 2012 21:33:17 +0000 (23:33 +0200)
r=timello a=LpSolit

template/en/default/list/server-push.html.tmpl

index 47b78b0098ce6bc394d5f497a4923a9463c96228..2cdd956463a421455ea2bdd20961d1a26153d696 100644 (file)
     <h1 style="margin-top: 20%; text-align: center;">Please stand by ...</h1>
 
     [% IF debug %]
-      <p>
-        [% FOREACH debugline = debugdata %]
-          <code>[% debugline FILTER html %]</code><br>
-        [% END %]
-      </p>
-      <p>
-        <code>[% query FILTER html %]</code>
-      </p>
+      <p>[% query FILTER html %]</p>
+      [% IF query_explain.defined %]
+        <pre>[% query_explain FILTER html %]</pre>
+      [% END %]
     [% END %]
-
   </body>
 </html>