Index: trunk/phase3/includes/SpecialNewpages.php |
— | — | @@ -105,7 +105,7 @@ |
106 | 106 | $this->setSyndicated(); |
107 | 107 | $feedType = $this->opts->getValue( 'feed' ); |
108 | 108 | if( $feedType ) { |
109 | | - return $this->feed( $feedType, $options ); |
| 109 | + return $this->feed( $feedType ); |
110 | 110 | } |
111 | 111 | } |
112 | 112 | |
— | — | @@ -266,7 +266,7 @@ |
267 | 267 | * Output a subscription feed listing recent edits to this page. |
268 | 268 | * @param string $type |
269 | 269 | */ |
270 | | - protected function feed( $type, $options ) { |
| 270 | + protected function feed( $type ) { |
271 | 271 | require_once 'SpecialRecentchanges.php'; |
272 | 272 | |
273 | 273 | global $wgFeed, $wgFeedClasses; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -343,6 +343,7 @@ |
344 | 344 | * (Bug 13828) Split parameter $1 of MediaWiki:Missingarticle into $1 (=title) |
345 | 345 | and $2 (=revision numbers) |
346 | 346 | * (bug 14401) Fix Safari access key tooltips for Windows and >3.1 Mac versions |
| 347 | +* (bug 14432) Fix notice regression in Special:Newpages feed mode |
347 | 348 | |
348 | 349 | |
349 | 350 | === API changes in 1.13 === |