From 853c40ff96d824455483f3ff8d1d2f6c1710070c Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 30 May 2006 00:43:40 +0000 Subject: Bug 313023: Param("confirmuniqueusermatch") should not be case sensitive - Patch by Greg Hendricks r=LpSolit a=myk --- Bugzilla/User.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 93316bdb2..5da3db3ef 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'}]); -- cgit v1.2.3-24-g4f1b