Re: [PATCH] gitweb: hack around CGI's list-context param() handling

2014-11-18 Thread Jeff King
On Tue, Nov 18, 2014 at 09:58:26AM -0800, Junio C Hamano wrote: > Jeff King writes: > > > As of CGI.pm's 4.08 release, the behavior to call > > CGI::param() in a list context is deprecated (because it can > > be potentially unsafe if called inside a hash constructor). > > This cause gitweb to is

Re: [PATCH] gitweb: hack around CGI's list-context param() handling

2014-11-18 Thread Junio C Hamano
Jeff King writes: > As of CGI.pm's 4.08 release, the behavior to call > CGI::param() in a list context is deprecated (because it can > be potentially unsafe if called inside a hash constructor). > This cause gitweb to issue a warning for some of our code, > which in turn causes the tests to fail.

[PATCH] gitweb: hack around CGI's list-context param() handling

2014-11-18 Thread Jeff King
As of CGI.pm's 4.08 release, the behavior to call CGI::param() in a list context is deprecated (because it can be potentially unsafe if called inside a hash constructor). This cause gitweb to issue a warning for some of our code, which in turn causes the tests to fail. Our use is in fact _not_ one