function name typo correction. Version number update

This commit is contained in:
Thomas Gries 2012-02-29 20:00:43 +00:00
parent d6b3383044
commit bb33523be4
Notes: Thomas Gries 2012-02-29 20:00:43 +00:00
3 changed files with 8 additions and 4 deletions

View file

@ -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

View file

@ -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 <kellan@protest.net> -- 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;

View file

@ -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;