From dc6f5c314de445ec170d706930ebec6a77113df4 Mon Sep 17 00:00:00 2001 From: Alex Monk Date: Wed, 4 Sep 2013 01:32:29 +0100 Subject: [PATCH] Fix typo in property name Change I270bde41 introduced a typo to RecentChanges.php, referring to '$this->mExtras' when '$this->mExtra' was intended. This caused the IRC log action comment to be omitted from the IRC RC feed. Bug: 53720 Change-Id: I7f29ba8392861e00a37a2196833154bac41298b4 --- includes/RecentChange.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 9854a85a9b..980bd0a041 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -325,8 +325,8 @@ class RecentChange { foreach ( $wgRCFeeds as $feed ) { $engine = self::getEngine( $feed['uri'] ); - if ( isset( $this->mExtras['actionCommentIRC'] ) ) { - $actionComment = $this->mExtras['actionCommentIRC']; + if ( isset( $this->mExtra['actionCommentIRC'] ) ) { + $actionComment = $this->mExtra['actionCommentIRC']; } else { $actionComment = null; } -- 2.20.1