https://bugzilla.wikimedia.org/show_bug.cgi?id=62362
Nemo <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PATCH_TO_REVIEW |NEW --- Comment #8 from Nemo <[email protected]> --- (In reply to Niklas Laxström from comment #2) > To clarify: the beta feature is offered, but the feature does nothing > because of the differing checks for the preference and the actual feature. Now it is: A) adding the preference if ( $wgULSCompactLinks && $wgInterwikiMagic === true && $wgHideInterlanguageLinks === false ) { ... B) actually adding the feature if ( $wgULSCompactLinks && class_exists( 'BetaFeatures' ) && BetaFeatures::isFeatureEnabled( $out->getUser(), 'uls-compact-links' ) ) { ... B can't be false unless A is also false (or invalid), but syncing the two would make the thing cleaner. -- 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
