From: Alex Monk Date: Wed, 4 Sep 2013 00:32:29 +0000 (+0100) Subject: Fix typo in property name X-Git-Tag: 1.31.0-rc.0~18817 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=dc6f5c314de445ec170d706930ebec6a77113df4 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 --- 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; }