]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 290570: Bugzilla::Auth::WWW:Env uses bitwise OR - Patch by Simon Wilkinson <simon...
authorlpsolit%gmail.com <>
Sun, 17 Apr 2005 00:08:32 +0000 (00:08 +0000)
committerlpsolit%gmail.com <>
Sun, 17 Apr 2005 00:08:32 +0000 (00:08 +0000)
Bugzilla/Auth/Login/WWW/Env.pm

index 54e202bbf2a7c8482263b4963167892bf65b9015..2f29d570fdba374217e45b98ce04f3b06360dd8f 100644 (file)
@@ -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) {