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:
Mark Jaquith 2006-10-21 10:42:42 +00:00
parent 10b506305a
commit 3e4a8cd907
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {