From: Eric Wong Date: Wed, 22 Feb 2017 03:10:43 +0000 (+0000) Subject: repobrowse: eliminate unused query parameters X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1043e6471fdd5d88ceb6ed53a6af330d20b85a7;p=thirdparty%2Fpublic-inbox.git repobrowse: eliminate unused query parameters We will try to reduce the amount of query parameters as much as possible to make URLs more amenable to caching at various levels. --- diff --git a/lib/PublicInbox/RepoGitQuery.pm b/lib/PublicInbox/RepoGitQuery.pm index c8d4a256b..6a560d48f 100644 --- a/lib/PublicInbox/RepoGitQuery.pm +++ b/lib/PublicInbox/RepoGitQuery.pm @@ -7,7 +7,7 @@ use strict; use warnings; use PublicInbox::Hval; use URI::Escape qw(uri_unescape); -my @KNOWN_PARAMS = qw(id id2 ofs); +my @KNOWN_PARAMS = qw(ofs); sub new { my ($class, $env) = @_;