mirror of
git://develop.git.wordpress.org/
synced 2025-01-18 13:23:40 +01:00
Cast to array in xmlrpc.php. fixes #3266
git-svn-id: https://develop.svn.wordpress.org/trunk@4412 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
10b506305a
commit
3e4a8cd907
@ -134,7 +134,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||
function escape(&$array) {
|
||||
global $wpdb;
|
||||
|
||||
foreach ($array as $k => $v) {
|
||||
foreach ( (array) $array as $k => $v ) {
|
||||
if (is_array($v)) {
|
||||
$this->escape($array[$k]);
|
||||
} else if (is_object($v)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user