summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-03-28 23:27:27 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-03-28 23:27:27 +0200
commit8c404164f025a9fed3bb547ba203d406c5e60dbf (patch)
tree8fd605f0d524aa27c14bda398ad3a2fd8a94c43c /Bugzilla
parent7101bff098fe91c78ed2f2ffd3958ce2b94d3585 (diff)
downloadbugzilla-8c404164f025a9fed3bb547ba203d406c5e60dbf.tar.gz
bugzilla-8c404164f025a9fed3bb547ba203d406c5e60dbf.tar.xz
Bug 726193: add TryAutoLand extension
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/WebService/Server.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Server.pm b/Bugzilla/WebService/Server.pm
index 4e0315219..fdfff0057 100644
--- a/Bugzilla/WebService/Server.pm
+++ b/Bugzilla/WebService/Server.pm
@@ -26,6 +26,7 @@ use Scalar::Util qw(blessed);
sub handle_login {
my ($self, $class, $method, $full_method) = @_;
eval "require $class";
+ warn($@) if $@;
ThrowCodeError('unknown_method', {method => $full_method}) if $@;
return if ($class->login_exempt($method)
and !defined Bugzilla->input_params->{Bugzilla_login});