From: Aaron Schulz Date: Wed, 14 Jan 2009 18:14:12 +0000 (+0000) Subject: $udp is already on by default, remove arguments X-Git-Tag: 1.31.0-rc.0~43426 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/?a=commitdiff_plain;h=144184b5a0beba79e258ce4e9f1318b19a33c9aa;p=lhc%2Fweb%2Fwiklou.git $udp is already on by default, remove arguments --- 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; }