Make WordPress Core

Changeset 4411


Ignore:
Timestamp:
10/21/2006 10:41:43 AM (18 years ago)
Author:
markjaquith
Message:

Cast to array in xmlrpc.php. fixes #3266

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/xmlrpc.php

    r4306 r4411  
    135135        global $wpdb;
    136136
    137         foreach ($array as $k => $v) {
     137        foreach ( (array) $array as $k => $v ) {
    138138            if (is_array($v)) {
    139139                $this->escape($array[$k]);
Note: See TracChangeset for help on using the changeset viewer.