From: Eric Wong Date: Sat, 26 Dec 2015 00:46:32 +0000 (+0000) Subject: searchview: fixup stupid syntax error X-Git-Tag: v1.0.0~766 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;ds=sidebyside;h=e22c6b0074928e469866338c4f4e405605cf2b52;p=public-inbox.git searchview: fixup stupid syntax error Fixes: commit 398e29344ecc43548a7d3998bb5d2fcee62d66cd ("view: favor whitespace wrap in ") Oops. --- 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) . '
'
+	my $res = html_start($q, $ctx) . '
';
 	if ($err) {
 		$code = 400;
 		$res .= err_txt($err) . "

" . foot($ctx);