diff options
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Server/XMLRPC.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index a49ac2033..f3d95ef3d 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -98,6 +98,9 @@ sub make_response { sub handle_login { my ($self, $classes, $action, $uri, $method) = @_; my $class = $classes->{$uri}; + if (!$class) { + ThrowCodeError('unknown_method', { method => $method eq 'methodName' ? '' : '.' . $method }); + } my $full_method = $uri . "." . $method; # Only allowed methods to be used from the module's whitelist my $file = $class; |