From 689b261466eac40bf2c91a7cdaa6af26ac80390e Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 21 Feb 2012 23:51:18 +0000 Subject: [PATCH] r112062: updated LogEntry publish() function too --- includes/logging/LogEntry.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/logging/LogEntry.php b/includes/logging/LogEntry.php index ae6183faaa..327eb24fcb 100644 --- a/includes/logging/LogEntry.php +++ b/includes/logging/LogEntry.php @@ -462,14 +462,15 @@ class ManualLogEntry extends LogEntryBase { $this->getTimestamp(), $logpage, $user, - $formatter->getIRCActionText(), // Used for IRC feeds + $formatter->getPlainActionText(), $user->isAnon() ? $user->getName() : '', $this->getType(), $this->getSubtype(), $this->getTarget(), $this->getComment(), serialize( (array) $this->getParameters() ), - $newId + $newId, + $formatter->getIRCActionText() // Used for IRC feeds ); if ( $to === 'rc' || $to === 'rcandudp' ) { -- 2.20.1