From: Alexandre Emsenhuber Date: Thu, 4 Mar 2010 13:19:06 +0000 (+0000) Subject: Also "consume" categories and categories_any parameters so that it works correctly... X-Git-Tag: 1.31.0-rc.0~37553 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=dd6f2d123a814dd3d35ca3c786495cea20efe4ee;p=lhc%2Fweb%2Fwiklou.git Also "consume" categories and categories_any parameters so that it works correctly with $wgAllowCategorizedRecentChanges enabled --- diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 283eeaf425..5088004120 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -437,7 +437,8 @@ class SpecialRecentChanges extends SpecialPage { $defaults = $opts->getAllValues(); $nondefaults = $opts->getChangedValues(); - $opts->consumeValues( array( 'namespace', 'invert', 'tagfilter' ) ); + $opts->consumeValues( array( 'namespace', 'invert', 'tagfilter', + 'categories', 'categories_any' ) ); $panel = array(); $panel[] = $this->optionsPanel( $defaults, $nondefaults );