Index: trunk/extensions/RSS/RSSHooks.php |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | } |
66 | 66 | |
67 | 67 | if ( !Http::isValidURI( $input ) ) { |
68 | | - return RSSutils::RSSError( 'rss-invalid-url', htmlspecialchars( $input ) ); |
| 68 | + return RSSUtils::RSSError( 'rss-invalid-url', htmlspecialchars( $input ) ); |
69 | 69 | } |
70 | 70 | if ( $wgRSSCacheCompare ) { |
71 | 71 | $timeout = $wgRSSCacheCompare; |
Index: trunk/extensions/RSS/RELEASE-NOTES |
— | — | @@ -11,6 +11,10 @@ |
12 | 12 | (otherwise using the defaults - PHP will abort the entire program when your |
13 | 13 | memory usage gets too high) |
14 | 14 | |
| 15 | + |
| 16 | +=== Version 2.11 2012-02-29 === |
| 17 | +* function name typo correction |
| 18 | + |
15 | 19 | === Version 2.10 2012-02-27 === |
16 | 20 | * final solution of bug 30028 "Error parsing XML for RSS" - improve and harden |
17 | 21 | Extension:RSS when parsing differently flavoured RSS feeds and ATOM feeds |
Index: trunk/extensions/RSS/RSS.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * |
6 | 6 | * @file |
7 | 7 | * @ingroup Extensions |
8 | | - * @version 2.10 |
| 8 | + * @version 2.11 |
9 | 9 | * @author mutante, Daniel Kinzler, Rdb, Mafs, Thomas Gries, Alxndr, Chris Reigrut, K001 |
10 | 10 | * @author Kellan Elliott-McCrea <kellan@protest.net> -- author of MagpieRSS |
11 | 11 | * @author Jeroen De Dauw |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * @link http://www.mediawiki.org/wiki/Extension:RSS Documentation |
16 | 16 | */ |
17 | 17 | |
18 | | -define( "EXTENSION_RSS_VERSION", "2.10 20120227" ); |
| 18 | +define( "EXTENSION_RSS_VERSION", "2.11 20120229" ); |
19 | 19 | |
20 | 20 | if ( !defined( 'MEDIAWIKI' ) ) { |
21 | 21 | die( "This is not a valid entry point.\n" ); |
— | — | @@ -94,4 +94,4 @@ |
95 | 95 | // limit the number of characters in the item description |
96 | 96 | // or set to false for unlimited length. |
97 | 97 | // $wgRSSItemMaxLength = false; |
98 | | -$wgRSSItemMaxLength = 200; |
| 98 | +$wgRSSItemMaxLength = false; |