From 144184b5a0beba79e258ce4e9f1318b19a33c9aa Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 14 Jan 2009 18:14:12 +0000 Subject: [PATCH] $udp is already on by default, remove arguments --- includes/PatrolLog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/PatrolLog.php b/includes/PatrolLog.php index 3b9a3699fd..b96c70361b 100644 --- a/includes/PatrolLog.php +++ b/includes/PatrolLog.php @@ -23,7 +23,7 @@ class PatrolLog { $title = Title::makeTitleSafe( $rc->getAttribute( 'rc_namespace' ), $rc->getAttribute( 'rc_title' ) ); if( is_object( $title ) ) { $params = self::buildParams( $rc, $auto ); - $log = new LogPage( 'patrol', false, true ); # False suppresses RC entries + $log = new LogPage( 'patrol', false ); # False suppresses RC entries $log->addEntry( 'patrol', $title, '', $params ); return true; } -- 2.20.1