summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Auth
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-04-17 02:08:32 +0200
committerlpsolit%gmail.com <>2005-04-17 02:08:32 +0200
commitafbef29b287822ae369e715edb24db44e1eb1936 (patch)
treee10bbecfb19f4d79cb7debfd6f6ad43aec89c592 /Bugzilla/Auth
parent11a6e0fe49f6e336aa3779d793f0d7deddc4a60f (diff)
downloadbugzilla-afbef29b287822ae369e715edb24db44e1eb1936.tar.gz
bugzilla-afbef29b287822ae369e715edb24db44e1eb1936.tar.xz
Bug 290570: Bugzilla::Auth::WWW:Env uses bitwise OR - Patch by Simon Wilkinson <simon@sxw.org.uk> r=kiko a=justdave
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r--Bugzilla/Auth/Login/WWW/Env.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Auth/Login/WWW/Env.pm b/Bugzilla/Auth/Login/WWW/Env.pm
index 54e202bbf..2f29d570f 100644
--- a/Bugzilla/Auth/Login/WWW/Env.pm
+++ b/Bugzilla/Auth/Login/WWW/Env.pm
@@ -57,7 +57,7 @@ sub login {
trick_taint($env_id);
trick_taint($env_realname);
- if ($env_id | $env_email) {
+ if ($env_id || $env_email) {
# Look in the DB for the extern_id
if ($env_id) {