]> Sergey Matveev's repositories - public-inbox.git/commitdiff
searchview: fixup stupid syntax error
authorEric Wong <e@80x24.org>
Sat, 26 Dec 2015 00:46:32 +0000 (00:46 +0000)
committerEric Wong <e@80x24.org>
Sat, 26 Dec 2015 00:46:32 +0000 (00:46 +0000)
Fixes: commit 398e29344ecc43548a7d3998bb5d2fcee62d66cd
("view: favor whitespace wrap in <head>")

Oops.

lib/PublicInbox/SearchView.pm

index 5b15e0d7e2fed72ef84fe0785d34f8e2ffd5dfc3..9a581561172ddf941ba14a44655497302b77503e 100644 (file)
@@ -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);