summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Côté <mcote@alumni.uwaterloo.ca>2018-07-25 20:00:06 +0200
committerdklawren <dklawren@users.noreply.github.com>2018-07-25 20:00:06 +0200
commit7dadc66b5c3895ff5d9a83de1dcde49f8f523554 (patch)
treebc21976a90861bfafc97e02d95c979ad50df5fbe
parent7ded28be567fd52b2ab752c30203e59f307ebdcd (diff)
downloadbugzilla-7dadc66b5c3895ff5d9a83de1dcde49f8f523554.tar.gz
bugzilla-7dadc66b5c3895ff5d9a83de1dcde49f8f523554.tar.xz
no bug - Include Bugzilla::Error in PhabBugz's WebService.pm.
The ThrowUserError() calls in PhabBugz's WebService.pm were causing errors as Bugzilla::Error wasn't being imported.
-rw-r--r--extensions/PhabBugz/lib/WebService.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions/PhabBugz/lib/WebService.pm b/extensions/PhabBugz/lib/WebService.pm
index 0239ccf74..142211c6d 100644
--- a/extensions/PhabBugz/lib/WebService.pm
+++ b/extensions/PhabBugz/lib/WebService.pm
@@ -14,6 +14,7 @@ use warnings;
use base qw(Bugzilla::WebService);
use Bugzilla::Constants;
+use Bugzilla::Error;
use Bugzilla::User;
use Bugzilla::Util qw(detaint_natural datetime_from time_ago trick_taint);
use Bugzilla::WebService::Constants;