diff options
author | myk%mozilla.org <> | 2006-01-06 23:38:35 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2006-01-06 23:38:35 +0100 |
commit | 76c3a58cd5e5f040c09258b98727c42f7059a78d (patch) | |
tree | fcb285ed8b47bbcf48bab2bb018b928a7a648728 /process_bug.cgi | |
parent | 199d6ed76f022232c3799036c75661604a6d70d4 (diff) | |
download | bugzilla-76c3a58cd5e5f040c09258b98727c42f7059a78d.tar.gz bugzilla-76c3a58cd5e5f040c09258b98727c42f7059a78d.tar.xz |
Backing out fix for bug 287325 (initial implementation of custom fields): turns out the tree is not yet open for 2.24 checkins after all. I'll check this back in once the tree opens for 2.24 checkins, which lpsolit says will be in about a month.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index fcd6408d3..77496f2a3 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -855,18 +855,6 @@ foreach my $field ("rep_platform", "priority", "bug_severity", } } -# Add custom fields data to the query that will update the database. -foreach my $field (Bugzilla->custom_field_names) { - if (defined $cgi->param($field) - && (!$cgi->param('dontchange') - || $cgi->param($field) ne $cgi->param('dontchange'))) - { - DoComma(); - $::query .= "$field = " . SqlQuote(trim($cgi->param($field))); - } -} - - my $prod_id; my $prod_changed; my @newprod_ids; |