]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixed bug 513 -- adding CC field caused crash.
authorterry%netscape.com <>
Sat, 29 Aug 1998 01:32:15 +0000 (01:32 +0000)
committerterry%netscape.com <>
Sat, 29 Aug 1998 01:32:15 +0000 (01:32 +0000)
process_bug.cgi

index 4927ecc1fbd39d4dcfa6729c00a7d08cb752c8f6..f6997d0e6dced6b5674e6dacdf18ce49fd496cf3 100755 (executable)
@@ -254,8 +254,8 @@ foreach id $idlist {
         unset ccids(zz)
         foreach person [split $FORM(cc) " ,"] {
             if {![cequal $person ""]} {
-                set id [DBNameToIdAndCheck $person]
-                set ccids($id) 1
+                set cid [DBNameToIdAndCheck $person]
+                set ccids($cid) 1
             }
         }