From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, T_RP_MATCHES_RCVD shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 8423B200EA for ; Thu, 1 Oct 2015 20:17:28 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] searchview: fix syntax error Date: Thu, 1 Oct 2015 20:17:28 +0000 Message-Id: <20151001201728.15739-1-e@80x24.org> List-Id: Oops, I forgot to run the syntax check for this. --- lib/PublicInbox/SearchView.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm index cfc650f..a51acbb 100644 --- a/lib/PublicInbox/SearchView.pm +++ b/lib/PublicInbox/SearchView.pm @@ -261,7 +261,7 @@ use PublicInbox::Hval; sub new { my ($class, $cgi) = @_; - my $r => $cgi->param('r'), + my $r = $cgi->param('r'); bless { q => $cgi->param('q'), x => $cgi->param('x') || '', -- EW