From: Roan Kattouw Date: Tue, 1 Aug 2017 21:32:51 +0000 (-0700) Subject: Follow-up 31be7d0: send tags list if experimental mode is disabled X-Git-Tag: 1.31.0-rc.0~2509^2 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=7f8cbb602f04095c7a06820311f5b0479d876ffb;p=lhc%2Fweb%2Fwiklou.git Follow-up 31be7d0: send tags list if experimental mode is disabled Change-Id: Ia9f44ed47d79f02c5d14ce756133e64c7ae926f9 --- diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 1f8e3c5648..157c3ed368 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -189,12 +189,10 @@ class SpecialRecentChanges extends ChangesListSpecialPage { 'wgStructuredChangeFiltersEnableLiveUpdate', $this->getConfig()->get( 'StructuredChangeFiltersEnableLiveUpdate' ) ); - if ( $experimentalStructuredChangeFilters ) { - $out->addJsConfigVars( - 'wgRCFiltersChangeTags', - $this->buildChangeTagList() - ); - } + $out->addJsConfigVars( + 'wgRCFiltersChangeTags', + $this->buildChangeTagList() + ); } }