From: bugreport%peshkin.net <> Date: Fri, 1 Nov 2002 06:34:42 +0000 (+0000) Subject: Bug 177435 exact match on assignee fails with user matching X-Git-Tag: bugzilla-2.17.1~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=946decbac253f56f7a0ae976fe3fa014c308e87e;p=thirdparty%2Fbugzilla.git Bug 177435 exact match on assignee fails with user matching patch by not_erik r=myk,joel --- diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 3e5cce9906..7b167d0c05 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -126,7 +126,7 @@ sub match { my $query = "SELECT userid, realname, login_name " . "FROM profiles " . "WHERE login_name = $sqlstr "; - $query .= "AND disabledtext = '' " if $exclude_disabled; + # Exact matches don't care if a user is disabled. &::PushGlobalSQLState(); &::SendSQL($query);