about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchView.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-12-25 11:48:27 +0000
committerEric Wong <e@80x24.org>2015-12-25 12:05:50 +0000
commit398e29344ecc43548a7d3998bb5d2fcee62d66cd (patch)
treefbeac65ecb0d542ed8341d442e85b0933a4ecf4a /lib/PublicInbox/SearchView.pm
parenta5409589fe53734ed073dddb15f0a8033052986b (diff)
downloadpublic-inbox-398e29344ecc43548a7d3998bb5d2fcee62d66cd.tar.gz
view: favor whitespace wrap in <head>
If we bite the bullet and rely on inline CSS, we might as well
only specify it once per page instead of inline in every <pre>
tag which may handle UGC.  So this actually saves us a small
amount of bandwith on most pages which have multiple <pre>
start tags.
Diffstat (limited to 'lib/PublicInbox/SearchView.pm')
-rw-r--r--lib/PublicInbox/SearchView.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm
index fec4f39f..5b15e0d7 100644
--- a/lib/PublicInbox/SearchView.pm
+++ b/lib/PublicInbox/SearchView.pm
@@ -32,7 +32,7 @@ sub sres_top_html {
                 $total = $mset->get_matches_estimated;
         };
         my $err = $@;
-        my $res = html_start($q, $ctx) . PublicInbox::Hval::PRE;
+        my $res = html_start($q, $ctx) . '<pre>'
         if ($err) {
                 $code = 400;
                 $res .= err_txt($err) . "</pre><hr /><pre>" . foot($ctx);