Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from before "trim" per bbaetz.

r=bbaetz
a=myk
This commit is contained in:
myk%mozilla.org 2002-11-17 22:50:59 +00:00
Родитель c7a69b0862
Коммит a845364481
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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;