]> 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:35:00 +0000 (23:35 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Thu, 7 Jun 2012 21:35:00 +0000 (23:35 +0200)
r=timello a=LpSolit

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

index d1c157f726329dd720e84dcaa6ca1441e5f5e36c..914d827a9946583dcdeb73f030b3b62d9c3a8156 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>