diff options
author | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2012-02-20 21:39:33 +0000 |
---|---|---|
committer | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2012-02-20 21:39:33 +0000 |
commit | 5ca3075275041ac4636607242f0893b6b69763c0 (patch) | |
tree | 37e05d4a2ef035622320c471e1e3fe19037d6f4d /includes | |
parent | aeff260154bf7f19a52e6b1bb6345c0cbaa18284 (diff) | |
download | mediawikicore-5ca3075275041ac4636607242f0893b6b69763c0.tar.gz mediawikicore-5ca3075275041ac4636607242f0893b6b69763c0.zip |
Fix parse error from r111965
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/111967
Diffstat (limited to 'includes')
-rw-r--r-- | includes/logging/PatrolLog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/logging/PatrolLog.php b/includes/logging/PatrolLog.php index fc7408a38305..eea348eb6ebc 100644 --- a/includes/logging/PatrolLog.php +++ b/includes/logging/PatrolLog.php @@ -32,7 +32,7 @@ class PatrolLog { $entry = new ManualLogEntry( 'patrol', 'patrol' ); $entry->setTarget( $title ); $entry->setParameters( self::buildParams( $rc, $auto ) ); - $entry->setPerformer( $wgUser, false ) ); + $entry->setPerformer( $wgUser ); $logid = $entry->insert(); if ( !$auto ) { $entry->publish( $logid, 'udp' ); |