diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-06-07 23:33:17 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-06-07 23:33:17 +0200 |
commit | ce2f6f61a32e054dd0db2ac15f0759166de124c4 (patch) | |
tree | 4099b6b3a63c1c04c0bad1c0e8caae10b86c97ca | |
parent | Bug 760978: Remove support for Internet Explorer 5 on Mac (diff) | |
download | bugzilla-ce2f6f61a32e054dd0db2ac15f0759166de124c4.tar.gz bugzilla-ce2f6f61a32e054dd0db2ac15f0759166de124c4.tar.bz2 bugzilla-ce2f6f61a32e054dd0db2ac15f0759166de124c4.zip |
Bug 761230: The server push page no longer displays all debug data
r=timello a=LpSolit
-rw-r--r-- | template/en/default/list/server-push.html.tmpl | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/template/en/default/list/server-push.html.tmpl b/template/en/default/list/server-push.html.tmpl index 47b78b009..2cdd95646 100644 --- a/template/en/default/list/server-push.html.tmpl +++ b/template/en/default/list/server-push.html.tmpl @@ -19,15 +19,10 @@ <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> |