From: justdave%syndicomm.com <> Date: Sun, 18 Nov 2001 05:28:24 +0000 (+0000) Subject: Backing out previous checkin, it broke the tree. :( X-Git-Tag: bugzilla-2.16rc1~326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa5aead25142d188aa3aad9004fefa84ab496533;p=thirdparty%2Fbugzilla.git Backing out previous checkin, it broke the tree. :( --- diff --git a/process_bug.cgi b/process_bug.cgi index d52221d275..9e90827f1d 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -136,10 +136,8 @@ if ( $::FORM{'id'} ) { SendSQL("SELECT product FROM bugs WHERE bug_id = $::FORM{'id'}"); $::oldproduct = FetchSQLData(); } -if ((($::FORM{'id'} && $::FORM{'product'} ne $::oldproduct) - || (!$::FORM{'id'} && $::FORM{'product'} ne $::dontchange)) - && CheckonComment( "reassignbycomponent" )) -{ +if ( ($::FORM{'id'} && $::FORM{'product'} ne $::oldproduct) + || (!$::FORM{'id'} && $::FORM{'product'} ne $::dontchange) ) { if ( Param("strictvaluechecks") ) { CheckFormField(\%::FORM, 'product', \@::legal_product); }