From: umherirrender Date: Sun, 21 Oct 2012 15:26:23 +0000 (+0200) Subject: RecentChangesLinked: 'tagfilter' option already set in parent X-Git-Tag: 1.31.0-rc.0~21922^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=bcd458df6140ebf89b0861be92c2b68e6e519d9e;p=lhc%2Fweb%2Fwiklou.git RecentChangesLinked: 'tagfilter' option already set in parent Inside SpecialRecentChanges::getDefaultOptions() the 'tagfilter' option is already set, so there is no need to do it a second time. Change-Id: If89cf65a19676a4c6efa82883544b74e08961c62 --- diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index 862736d3f8..40ebc2fe4f 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -37,7 +37,6 @@ class SpecialRecentchangeslinked extends SpecialRecentChanges { $opts = parent::getDefaultOptions(); $opts->add( 'target', '' ); $opts->add( 'showlinkedto', false ); - $opts->add( 'tagfilter', '' ); return $opts; }