summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 1b3f161ee..48502326e 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -980,7 +980,7 @@ sub match_field {
elsif ($field_name =~ /^requestee_type-(\d+)$/) {
require Bugzilla::FlagType;
$expanded_fields->{$field_name}->{'flag_type'} =
- Bugzilla::FlagType::get($1);
+ new Bugzilla::FlagType($1);
}
}
}