mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
Fix encoding of numeric arrays in XMLRPC->JSON conversion
This commit is contained in:
parent
7fec63867a
commit
fed4f950bf
1 changed files with 41 additions and 2 deletions
|
|
@ -9,14 +9,53 @@ class JSONDisplayHandler
|
|||
* @param ModuleObject $oModule the module object
|
||||
* @return string
|
||||
*/
|
||||
function toDoc(&$oModule)
|
||||
public function toDoc($oModule)
|
||||
{
|
||||
$variables = $oModule->getVariables();
|
||||
$variables['error'] = $oModule->getError();
|
||||
$variables['message'] = $oModule->getMessage();
|
||||
|
||||
if (Context::getRequestMethod() === 'XMLRPC')
|
||||
{
|
||||
$temp = array();
|
||||
foreach ($variables as $key => $value)
|
||||
{
|
||||
if (self::_isNumericArray($value))
|
||||
{
|
||||
$temp[$key] = array_values($value);
|
||||
}
|
||||
else
|
||||
{
|
||||
$temp[$key] = $value;
|
||||
}
|
||||
}
|
||||
$variables = $temp;
|
||||
}
|
||||
|
||||
return json_encode($variables);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Check if an array only has numeric keys.
|
||||
*
|
||||
* @param array $array
|
||||
* @return bool
|
||||
*/
|
||||
protected static function _isNumericArray($array)
|
||||
{
|
||||
if (!is_array($array) || !count($array))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
foreach ($array as $key => $value)
|
||||
{
|
||||
if (intval($key) != $key)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
/* End of file JSONDisplayHandler.class.php */
|
||||
/* Location: ./classes/display/JSONDisplayHandler.class.php */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue