summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormyk%mozilla.org <>2002-11-18 07:50:59 +0100
committermyk%mozilla.org <>2002-11-18 07:50:59 +0100
commit8edc955f0637f4e8c1cde136319a03e0060f0819 (patch)
treef0391307dba75498960a266c242a15e844bc6bf5 /Bugzilla
parentd33becc598d23f52d3fbe83854bfe4eecbdd7c18 (diff)
downloadbugzilla-8edc955f0637f4e8c1cde136319a03e0060f0819.tar.gz
bugzilla-8edc955f0637f4e8c1cde136319a03e0060f0819.tar.xz
Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from before "trim" per bbaetz.
r=bbaetz a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Flag.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 31e80ab3f..d601a115b 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -32,6 +32,7 @@ package Bugzilla::Flag;
use Bugzilla::FlagType;
use Bugzilla::User;
use Bugzilla::Config;
+use Bugzilla::Util;
use Attachment;
@@ -312,7 +313,7 @@ sub modify {
my $flag = get($id);
my $status = $data->{"flag-$id"};
- my $requestee_email = &::trim($data->{"requestee-$id"});
+ my $requestee_email = trim($data->{"requestee-$id"});
# Ignore flags the user didn't change. A flag hasn't changed
# if its status and requestee remain the same. Status is easy;