From 31edd11972e360a0773ee071c9b4666c51edfcef Mon Sep 17 00:00:00 2001 From: "bugzilla%glob.com.au" <> Date: Sat, 19 Feb 2005 00:38:42 +0000 Subject: Bug 282510: Argument "" isn't numeric when modifying group Patch by Byron Jones r,a=justdave --- editgroups.cgi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'editgroups.cgi') diff --git a/editgroups.cgi b/editgroups.cgi index 02f24b1e4..f7362cb5f 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -599,7 +599,7 @@ sub doGroupChanges { $b =~ /^oldgrp-(\d+)$/; my $v = $1; my $grp = $cgi->param("grp-$v") || 0; - if (($cgi->param("oldgrp-$v") != $grp) && ($v != $gid)) { + if (($v != $gid) && ($cgi->param("oldgrp-$v") != $grp)) { $chgs = 1; if ($grp != 0) { SendSQL("INSERT INTO group_group_map @@ -613,7 +613,8 @@ sub doGroupChanges { } my $bless = $cgi->param("bless-$v") || 0; - if ($cgi->param("oldbless-$v") != $bless) { + my $oldbless = $cgi->param("oldbless-$v"); + if ((defined $oldbless) and ($oldbless != $bless)) { $chgs = 1; if ($bless != 0) { SendSQL("INSERT INTO group_group_map -- cgit v1.2.3-24-g4f1b