From: myk%mozilla.org <> Date: Mon, 18 Nov 2002 06:50:59 +0000 (+0000) Subject: Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from... X-Git-Tag: bugzilla-2.17.2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8edc955f0637f4e8c1cde136319a03e0060f0819;p=thirdparty%2Fbugzilla.git Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from before "trim" per bbaetz. r=bbaetz a=myk --- diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 31e80ab3f0..d601a115b6 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;