From: Sam Reed Date: Tue, 30 Nov 2010 18:52:49 +0000 (+0000) Subject: qualify call to array_to_obj X-Git-Tag: 1.31.0-rc.0~33672 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=76555b68ad025482389eb0e681eebb3af435d0c9;p=lhc%2Fweb%2Fwiklou.git qualify call to array_to_obj Followup r70608 --- diff --git a/includes/db/DatabaseMssql.php b/includes/db/DatabaseMssql.php index 93c1cf2c6f..1be97c0a2e 100644 --- a/includes/db/DatabaseMssql.php +++ b/includes/db/DatabaseMssql.php @@ -1121,7 +1121,7 @@ class MssqlResult { foreach ( $array as $key => $value ) { if ( is_array( $value ) ) { $obj->$key = new stdClass(); - array_to_obj( $value, $obj->$key ); + $this->array_to_obj( $value, $obj->$key ); } else { if ( !empty( $key ) ) { $obj->$key = $value;