* (bug 14432) Fix notice regression in Special:Newpages feed mode
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 6 Jun 2008 16:42:23 +0000 (16:42 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 6 Jun 2008 16:42:23 +0000 (16:42 +0000)
RELEASE-NOTES
includes/SpecialNewpages.php

index 53a3d3b..508df83 100644 (file)
@@ -343,6 +343,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (Bug 13828) Split parameter $1 of MediaWiki:Missingarticle into $1 (=title)
   and $2 (=revision numbers)
 * (bug 14401) Fix Safari access key tooltips for Windows and >3.1 Mac versions
+* (bug 14432) Fix notice regression in Special:Newpages feed mode
 
 
 === API changes in 1.13 ===
index 3201a9a..06252a8 100644 (file)
@@ -105,7 +105,7 @@ class NewPagesForm {
                        $this->setSyndicated();
                        $feedType = $this->opts->getValue( 'feed' );
                        if( $feedType ) {
-                               return $this->feed( $feedType, $options );
+                               return $this->feed( $feedType );
                        }
                }
 
@@ -266,7 +266,7 @@ class NewPagesForm {
         * Output a subscription feed listing recent edits to this page.
         * @param string $type
         */
-       protected function feed( $type, $options ) {
+       protected function feed( $type ) {
                require_once 'SpecialRecentchanges.php';
 
                global $wgFeed, $wgFeedClasses;