From 0001b213e52af4c1325a62c26628b5ec23b47bb9 Mon Sep 17 00:00:00 2001 From: Derick Alangi Date: Sat, 20 Apr 2019 16:15:15 +0100 Subject: [PATCH] rcfeed: Replace usage of deprecated class RCFeedEngine (in comments) Doing the replacement for code logic for where it's used is breaking compatibility, the first change set did this but as adviced, let's wait for a while until the class is removed. Change-Id: I3cc0593080f0d51b380c9cdbabc646459e6798e1 --- includes/DefaultSettings.php | 2 +- includes/rcfeed/UDPRCFeedEngine.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 1c76121561..bcb5b8f2d9 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -6852,7 +6852,7 @@ $wgRCLinkDays = [ 1, 3, 7, 14, 30 ]; * FormattedRCFeed-specific options: * - 'uri' -- [required] The address to which the messages are sent. * The uri scheme of this string will be looked up in $wgRCEngines - * to determine which RCFeedEngine class to use. + * to determine which FormattedRCFeed class to use. * - 'formatter' -- [required] The class (implementing RCFeedFormatter) which will * produce the text to send. This can also be an object of the class. * Formatters available by default: JSONRCFeedFormatter, XMLRCFeedFormatter, diff --git a/includes/rcfeed/UDPRCFeedEngine.php b/includes/rcfeed/UDPRCFeedEngine.php index 7e69a02572..d142c48dce 100644 --- a/includes/rcfeed/UDPRCFeedEngine.php +++ b/includes/rcfeed/UDPRCFeedEngine.php @@ -24,7 +24,7 @@ */ class UDPRCFeedEngine extends RCFeedEngine { /** - * @see RCFeedEngine::send + * @see FormattedRCFeed::send * @param array $feed * @param string $line * @return bool -- 2.20.1