about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-12-26 00:46:32 +0000
committerEric Wong <e@80x24.org>2015-12-26 00:46:32 +0000
commite22c6b0074928e469866338c4f4e405605cf2b52 (patch)
treee11877f97e423b7e548530ac690a373a892fd700 /lib
parent398e29344ecc43548a7d3998bb5d2fcee62d66cd (diff)
downloadpublic-inbox-e22c6b0074928e469866338c4f4e405605cf2b52.tar.gz
Fixes: commit 398e29344ecc43548a7d3998bb5d2fcee62d66cd
("view: favor whitespace wrap in <head>")

Oops.
Diffstat (limited to 'lib')
-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 5b15e0d7..9a581561 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) . '<pre>'
+        my $res = html_start($q, $ctx) . '<pre>';
         if ($err) {
                 $code = 400;
                 $res .= err_txt($err) . "</pre><hr /><pre>" . foot($ctx);