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