From bb33523be4733883d35cfc96d6cf2d491273c410 Mon Sep 17 00:00:00 2001 From: Thomas Gries Date: Wed, 29 Feb 2012 20:00:43 +0000 Subject: [PATCH] function name typo correction. Version number update --- RELEASE-NOTES | 4 ++++ RSS.php | 6 +++--- RSSHooks.php | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 07d54eb..322460e 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -11,6 +11,10 @@ http://www.mediawiki.org/wiki/Extension:RSS (otherwise using the defaults - PHP will abort the entire program when your memory usage gets too high) + +=== Version 2.11 2012-02-29 === +* function name typo correction + === Version 2.10 2012-02-27 === * final solution of bug 30028 "Error parsing XML for RSS" - improve and harden Extension:RSS when parsing differently flavoured RSS feeds and ATOM feeds diff --git a/RSS.php b/RSS.php index b3f32d7..fa90104 100644 --- a/RSS.php +++ b/RSS.php @@ -4,7 +4,7 @@ * * @file * @ingroup Extensions - * @version 2.10 + * @version 2.11 * @author mutante, Daniel Kinzler, Rdb, Mafs, Thomas Gries, Alxndr, Chris Reigrut, K001 * @author Kellan Elliott-McCrea -- author of MagpieRSS * @author Jeroen De Dauw @@ -14,7 +14,7 @@ * @link http://www.mediawiki.org/wiki/Extension:RSS Documentation */ -define( "EXTENSION_RSS_VERSION", "2.10 20120227" ); +define( "EXTENSION_RSS_VERSION", "2.11 20120229" ); if ( !defined( 'MEDIAWIKI' ) ) { die( "This is not a valid entry point.\n" ); @@ -94,4 +94,4 @@ $wgRSSDateDefaultFormat = "(Y-m-d H:i:s)"; // limit the number of characters in the item description // or set to false for unlimited length. // $wgRSSItemMaxLength = false; -$wgRSSItemMaxLength = 200; +$wgRSSItemMaxLength = false; diff --git a/RSSHooks.php b/RSSHooks.php index 00fcb48..c89ce5c 100644 --- a/RSSHooks.php +++ b/RSSHooks.php @@ -64,7 +64,7 @@ class RSSHooks { } if ( !Http::isValidURI( $input ) ) { - return RSSutils::RSSError( 'rss-invalid-url', htmlspecialchars( $input ) ); + return RSSUtils::RSSError( 'rss-invalid-url', htmlspecialchars( $input ) ); } if ( $wgRSSCacheCompare ) { $timeout = $wgRSSCacheCompare;