diff options
author | bbaetz%student.usyd.edu.au <> | 2002-10-26 10:01:41 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-10-26 10:01:41 +0200 |
commit | 37993682fd10962e944a1e5bf9633c7b08ad49e6 (patch) | |
tree | aed6219d3fba994c78ec431338c4bdec6425741a | |
parent | 4888825a13fda24c0bbe644af27f7c2d2a061969 (diff) | |
download | bugzilla-37993682fd10962e944a1e5bf9633c7b08ad49e6.tar.gz bugzilla-37993682fd10962e944a1e5bf9633c7b08ad49e6.tar.xz |
Bug 171278 - component/product ids mean that you can't do change queries on
component/product
r=gerv
-rwxr-xr-x | query.cgi | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -281,8 +281,21 @@ shift @::legal_resolution; # Another hack - this array contains "" for some reason. See bug 106589. $vars->{'resolution'} = \@::legal_resolution; -my @chfields = @::log_columns; +my @chfields; + push @chfields, "[Bug creation]"; + +# This is what happens when you have variables whose definition depends +# on the DB schema, and then the underlying schema changes... +foreach my $val (@::log_columns) { + if ($val eq 'product_id') { + $val = 'product'; + } elsif ($val eq 'component_id') { + $val = 'component'; + } + push @chfields, $val; +} + if (UserInGroup(Param('timetrackinggroup'))) { push @chfields, "work_time"; } else { |