r45737 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r45736‎ | r45737 | r45738 >
Date:18:14, 14 January 2009
Author:aaron
Status:ok
Tags:
Comment:
$udp is already on by default, remove arguments
Modified paths:
  • /trunk/extensions/FlaggedRevs/specialpages/RevisionReview_body.php (modified) (history)
  • /trunk/phase3/includes/PatrolLog.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/PatrolLog.php
@@ -23,7 +23,7 @@
2424 $title = Title::makeTitleSafe( $rc->getAttribute( 'rc_namespace' ), $rc->getAttribute( 'rc_title' ) );
2525 if( is_object( $title ) ) {
2626 $params = self::buildParams( $rc, $auto );
27 - $log = new LogPage( 'patrol', false, true ); # False suppresses RC entries
 27+ $log = new LogPage( 'patrol', false ); # False suppresses RC entries
2828 $log->addEntry( 'patrol', $title, '', $params );
2929 return true;
3030 }
Index: trunk/extensions/FlaggedRevs/specialpages/RevisionReview_body.php
@@ -864,7 +864,7 @@
865865 {
866866 global $wgFlaggedRevsLogInRC;
867867 wfLoadExtensionMessages( 'FlaggedRevs' );
868 - $log = new LogPage( 'review', ($auto ? false : $wgFlaggedRevsLogInRC), true );
 868+ $log = new LogPage( 'review', ($auto ? false : $wgFlaggedRevsLogInRC) );
869869 # ID, accuracy, depth, style
870870 $ratings = array();
871871 foreach( $dims as $quality => $level ) {

Status & tagging log