From 0e52c06f2069cb5413abce39d6249bac73f045c8 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Fri, 11 Oct 2013 17:44:25 -0400 Subject: Bug 880829 - Migrate current custom field based tracking flags to the new Tracking Flags extension tables r=glob --- Bugzilla.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index a998de902..bcb77218e 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -594,8 +594,7 @@ sub active_custom_fields { my $cache_id = 'active_custom_fields'; if ($params) { $cache_id .= ($params->{product} ? '_p' . $params->{product}->id : '') . - ($params->{component} ? '_c' . $params->{component}->id : '') . - ($params->{type} ? '_t' . $params->{type} : ''); + ($params->{component} ? '_c' . $params->{component}->id : ''); } if (!exists $class->request_cache->{$cache_id}) { my $fields = Bugzilla::Field->match({ custom => 1, obsolete => 0}); -- cgit v1.2.3-24-g4f1b