diff options
author | myk%mozilla.org <> | 2004-01-26 15:04:22 +0000 |
---|---|---|
committer | myk%mozilla.org <> | 2004-01-26 15:04:22 +0000 |
commit | f4f5c47ea31a8a257b48c415b928db03071c475c (patch) | |
tree | 179bdd7c52acf9d5c31e7fccfa73d45376982349 | |
parent | 9e902ebec4fb35ba8cd566905914adcd189dc99a (diff) | |
download | bugs-f4f5c47ea31a8a257b48c415b928db03071c475c.tar bugs-f4f5c47ea31a8a257b48c415b928db03071c475c.tar.gz bugs-f4f5c47ea31a8a257b48c415b928db03071c475c.tar.bz2 bugs-f4f5c47ea31a8a257b48c415b928db03071c475c.tar.xz bugs-f4f5c47ea31a8a257b48c415b928db03071c475c.zip |
Fix for bug 232140: makes tests work on b.m.o by making BugMail.pm use Bugzilla::Util, which contains the trim() function BugMail.pm needs.
r=bbaetz
-rw-r--r-- | Bugzilla/BugMail.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 7fdf44980..059667a08 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -33,6 +33,7 @@ package Bugzilla::BugMail; use RelationSet; use Bugzilla::Config qw(:DEFAULT $datadir); +use Bugzilla::Util; # This code is really ugly. It was a commandline interface, then it was moved # There are package-global variables which we rely on ProcessOneBug to clean |