Commit 8edc955f authored by myk%mozilla.org's avatar myk%mozilla.org

Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::"…

Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from before "trim" per bbaetz. r=bbaetz a=myk
parent d33becc5
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment