Commit afbef29b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 290570: Bugzilla::Auth::WWW:Env uses bitwise OR - Patch by Simon Wilkinson…

Bug 290570: Bugzilla::Auth::WWW:Env uses bitwise OR - Patch by Simon Wilkinson <simon@sxw.org.uk> r=kiko a=justdave
parent 11a6e0fe
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment