diff options
author | myk%mozilla.org <> | 2002-07-09 11:16:56 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-07-09 11:16:56 +0200 |
commit | 336bf13a0a34b33f4977770128bdea4da81fa486 (patch) | |
tree | 34b52cd12a7115e6532326a89362da300202919b /Bugzilla | |
parent | c1c07ea635604263e521f1493521bae1d32ea77d (diff) | |
download | bugzilla-336bf13a0a34b33f4977770128bdea4da81fa486.tar.gz bugzilla-336bf13a0a34b33f4977770128bdea4da81fa486.tar.xz |
Fix for bug 150925: make email address changes work.
2xr=bbaetz
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Token.pm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index 358a1bb22..78eef9335 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -257,10 +257,9 @@ sub HasEmailChangeToken { my ($userid) = @_; - &::SendSQL("SELECT token FROM tokens - WHERE userid = $userid - AND tokentype = 'emailnew' - OR tokentype = 'emailold' LIMIT 1"); + &::SendSQL("SELECT token FROM tokens WHERE userid = $userid " . + "AND (tokentype = 'emailnew' OR tokentype = 'emailold') " . + "LIMIT 1"); my ($token) = &::FetchSQLData(); return $token; |