fixed the categories xmlrpc signature

This commit is contained in:
Ralf Becker 2004-03-15 21:38:09 +00:00
parent 4d9d50fc09
commit d8c602e654

View File

@ -531,8 +531,8 @@
), ),
'categories' => array( 'categories' => array(
'function' => 'categories', 'function' => 'categories',
'signature' => array(array(xmlrpcBool,xmlrpcStruct)), 'signature' => array(array(xmlrpcBoolean,xmlrpcBoolean)),
'docstring' => lang('List all categories.') 'docstring' => lang('List all categories')
), ),
'list_methods' => array( 'list_methods' => array(
'function' => 'list_methods', 'function' => 'list_methods',
@ -609,6 +609,6 @@
// return array with all infolog categories (for xmlrpc) // return array with all infolog categories (for xmlrpc)
function categories($complete = False) function categories($complete = False)
{ {
return $GLOBALS['server']->categories($complete); return $this->xmlrpc ? $GLOBALS['server']->categories($complete) : False;
} }
} }