mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00: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:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user