r86129 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r86128‎ | r86129 | r86130 >
Date:18:37, 15 April 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
follow up to r86128; fixed cp error
Modified paths:
  • /trunk/extensions/SemanticForms/includes/SF_Utils.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/includes/SF_Utils.php
@@ -314,7 +314,7 @@
315315 __METHOD__,
316316 array( 'ORDER BY' => 'page_title' ) );
317317 $form_names = array();
318 - while ( $row = $db->fetchRow( $res ) ) {
 318+ while ( $row = $dbr->fetchRow( $res ) ) {
319319 $form_names[] = str_replace( '_', ' ', $row[0] );
320320 }
321321 $dbr->freeResult( $res );

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r86128follow up to r86101; fetchRow cannot just be replaced like fetchObject :)jeroendedauw18:35, 15 April 2011