r77497 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r77496‎ | r77497 | r77498 >
Date:18:52, 30 November 2010
Author:reedy
Status:ok
Tags:
Comment:
qualify call to array_to_obj

Followup r70608
Modified paths:
  • /trunk/phase3/includes/db/DatabaseMssql.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/db/DatabaseMssql.php
@@ -1121,7 +1121,7 @@
11221122 foreach ( $array as $key => $value ) {
11231123 if ( is_array( $value ) ) {
11241124 $obj->$key = new stdClass();
1125 - array_to_obj( $value, $obj->$key );
 1125+ $this->array_to_obj( $value, $obj->$key );
11261126 } else {
11271127 if ( !empty( $key ) ) {
11281128 $obj->$key = $value;

Follow-up revisions

RevisionCommit summaryAuthorDate
r77515Do not take class members as known functions, so that it catches errors like ...platonides00:11, 1 December 2010

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r70608DatabaseMssql class and related changesyaauie23:44, 6 August 2010

Status & tagging log