https://bugzilla.wikimedia.org/show_bug.cgi?id=59798
--- Comment #15 from bamyers99 <[email protected]> --- Here is my analysis of what happened. On January 6, 2014, CommonSettings.php was changed here: https://git.wikimedia.org/commitdiff/operations%2Fmediawiki-config.git/4de2857061bc79128dc429f2aac6964a86c8f38a Before the change, CommonSettings.php looked like this: $wgCategoryTreeDynamicTag = true; require( $IP . '/extensions/CategoryTree/CategoryTree.php' ); Currently it looks like this: require( $IP . '/extensions/CategoryTree/CategoryTree.php' ); $wgCategoryTreeDynamicTag = true; Before the change, setting $wgCategoryTreeDynamicTag = true had no effect because it was set before the require statement and CategoryTree.php sets it back to the default of false. Since the $wgCategoryTreeDynamicTag feature is broken, setting it to true has caused issues. Can we get $wgCategoryTreeDynamicTag set back to false in CommonSettings.php until this bug is fixed? -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
