Skip to content

Commit 7307268

Browse files
committed
nitpick
1 parent e65a35e commit 7307268

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/xmlrpcs.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ function _xmlrpcs_listMethods($server, $m=null) // if called in plain php values
109109
return Server::_xmlrpcs_listMethods($server, $m);
110110
}
111111

112-
$_xmlrpcs_methodSignature_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray, $GLOBALS['xmlrpcString']));
112+
$_xmlrpcs_methodSignature_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray, \PhpXmlRpc\Value::$xmlrpcString));
113113
$_xmlrpcs_methodSignature_doc='Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)';
114114
$_xmlrpcs_methodSignature_sdoc=array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described'));
115115
function _xmlrpcs_methodSignature($server, $m)
116116
{
117117
return Server::_xmlrpcs_methodSignature($server, $m);
118118
}
119119

120-
$_xmlrpcs_methodHelp_sig=array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString']));
120+
$_xmlrpcs_methodHelp_sig=array(array(\PhpXmlRpc\Value::$xmlrpcString, \PhpXmlRpc\Value::$xmlrpcString));
121121
$_xmlrpcs_methodHelp_doc='Returns help text if defined for the method passed, otherwise returns an empty string';
122122
$_xmlrpcs_methodHelp_sdoc=array(array('method description', 'name of the method to be described'));
123123
function _xmlrpcs_methodHelp($server, $m)

0 commit comments

Comments
 (0)