diff options
author | lpsolit%gmail.com <> | 2008-02-25 22:06:24 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-02-25 22:06:24 +0000 |
commit | 816eb1e9bd788b2b3468481281793639c824996d (patch) | |
tree | 9e272644a04e3dec038785e4d819ff9fe25fe1e6 /colchange.cgi | |
parent | Bug 415676: Remove all mentions of landfill.bugzilla.org/ppm from the documen... (diff) | |
download | bugzilla-816eb1e9bd788b2b3468481281793639c824996d.tar.gz bugzilla-816eb1e9bd788b2b3468481281793639c824996d.tar.bz2 bugzilla-816eb1e9bd788b2b3468481281793639c824996d.zip |
Bug 415652: Implement Bugzilla->active_custom_fields - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-x | colchange.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/colchange.cgi b/colchange.cgi index c580547ce..b2d33de7e 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -81,7 +81,7 @@ if (Bugzilla->user->in_group(Bugzilla->params->{"timetrackinggroup"})) { push(@masterlist, ("short_desc", "short_short_desc")); my @custom_fields = grep { $_->type != FIELD_TYPE_MULTI_SELECT } - Bugzilla->get_fields({ custom => 1, obsolete => 0 }); + Bugzilla->active_custom_fields; push(@masterlist, map { $_->name } @custom_fields); $vars->{'masterlist'} = \@masterlist; |