diff options
author | lpsolit%gmail.com <> | 2006-05-30 02:43:40 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-05-30 02:43:40 +0200 |
commit | 853c40ff96d824455483f3ff8d1d2f6c1710070c (patch) | |
tree | 233ead8dbeba90a71725f0f400398420fc93082e | |
parent | d8f36cac89e6e054e884cbf54fbe130ec7424f9e (diff) | |
download | bugzilla-853c40ff96d824455483f3ff8d1d2f6c1710070c.tar.gz bugzilla-853c40ff96d824455483f3ff8d1d2f6c1710070c.tar.xz |
Bug 313023: Param("confirmuniqueusermatch") should not be case sensitive - Patch by Greg Hendricks <ghendricks@novell.com> r=LpSolit a=myk
-rw-r--r-- | Bugzilla/User.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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'}]); |