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 94b751c9d..69ba4c0d8 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -108,6 +108,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; |