summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-11-18 06:28:24 +0100
committerjustdave%syndicomm.com <>2001-11-18 06:28:24 +0100
commitaa5aead25142d188aa3aad9004fefa84ab496533 (patch)
tree6d1b36520f5bdbe2963c7de14c130791f3b99f39 /process_bug.cgi
parent6c63f96acbb67b145b7cd651e4452d9ab1a1d74c (diff)
downloadbugzilla-aa5aead25142d188aa3aad9004fefa84ab496533.tar.gz
bugzilla-aa5aead25142d188aa3aad9004fefa84ab496533.tar.xz
Backing out previous checkin, it broke the tree. :(
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi6
1 files changed, 2 insertions, 4 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index d52221d27..9e90827f1 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);
}