From c1f9b1f7b1b77776192048005dcc66dcf3df2bfb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 27 Dec 2014 15:41:37 +0100 Subject: Update to MediaWiki 1.24.1 --- includes/logging/PatrolLog.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'includes/logging/PatrolLog.php') diff --git a/includes/logging/PatrolLog.php b/includes/logging/PatrolLog.php index bb76d5a9..4f2a565d 100644 --- a/includes/logging/PatrolLog.php +++ b/includes/logging/PatrolLog.php @@ -27,13 +27,12 @@ * logs of patrol events */ class PatrolLog { - /** * Record a log event for a change being patrolled * - * @param $rc Mixed: change identifier or RecentChange object - * @param $auto Boolean: was this patrol event automatic? - * @param $user User: user performing the action or null to use $wgUser + * @param int|RecentChange $rc Change identifier or RecentChange object + * @param bool $auto Was this patrol event automatic? + * @param User $user User performing the action or null to use $wgUser * * @return bool */ @@ -65,15 +64,16 @@ class PatrolLog { if ( !$auto ) { $entry->publish( $logid, 'udp' ); } + return true; } /** * Prepare log parameters for a patrolled change * - * @param $change RecentChange to represent - * @param $auto Boolean: whether the patrol event was automatic - * @return Array + * @param RecentChange $change RecentChange to represent + * @param bool $auto Whether the patrol event was automatic + * @return array */ private static function buildParams( $change, $auto ) { return array( @@ -82,5 +82,4 @@ class PatrolLog { '6::auto' => (int)$auto ); } - } -- cgit v1.2.2