From: lpsolit%gmail.com <> Date: Tue, 30 May 2006 00:43:40 +0000 (+0000) Subject: Bug 313023: Param("confirmuniqueusermatch") should not be case sensitive - Patch... X-Git-Tag: bugzilla-2.23.2~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=853c40ff96d824455483f3ff8d1d2f6c1710070c;p=thirdparty%2Fbugzilla.git Bug 313023: Param("confirmuniqueusermatch") should not be case sensitive - Patch by Greg Hendricks r=LpSolit a=myk --- diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 93316bdb27..5da3db3ef4 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -991,7 +991,7 @@ sub match_field { # skip confirmation for exact matches if ((scalar(@{$users}) == 1) - && (@{$users}[0]->{'login'} eq $query)) + && (lc(@{$users}[0]->{'login'}) eq lc($query))) { $cgi->append(-name=>$field, -values=>[@{$users}[0]->{'login'}]);