Removed "Enable section editing via [edit] links" from preferences
Unwanted user preference option in MW adding to the clutter. Users interested in hiding section-edit links can use per-user (or site-wide) CSS. Removed 'editsection' from Defaultsettings.php and ResourceLoaderUserCSSPrefsModule.php Updated Release Notes Bug: 52811 Change-Id: I5fc49106621943ca7180ddb37590b624edac67d5
This commit is contained in:
parent
c0d3e85b06
commit
f6aa7b3e88
6 changed files with 3 additions and 15 deletions
|
|
@ -190,6 +190,7 @@ changes to languages because of Bugzilla reports.
|
|||
access operators should continue to work, as it implements the ArrayAccess
|
||||
interface).
|
||||
* Option to mark hooks as deprecated has been added.
|
||||
* (bug 52811) Preference "Enable section editing via [edit] links" was removed.
|
||||
|
||||
==== Removed classes ====
|
||||
* FakeMemCachedClient (deprecated in 1.18)
|
||||
|
|
|
|||
|
|
@ -3966,8 +3966,8 @@ $wgReservedUsernames = array(
|
|||
/**
|
||||
* Settings added to this array will override the default globals for the user
|
||||
* preferences used by anonymous visitors and newly created accounts.
|
||||
* For instance, to disable section editing links:
|
||||
* $wgDefaultUserOptions ['editsection'] = 0;
|
||||
* For instance, to disable editing on double clicks:
|
||||
* $wgDefaultUserOptions ['editondblclick'] = 0;
|
||||
*/
|
||||
$wgDefaultUserOptions = array(
|
||||
'ccmeonemails' => 0,
|
||||
|
|
@ -3977,7 +3977,6 @@ $wgDefaultUserOptions = array(
|
|||
'disablemail' => 0,
|
||||
'editfont' => 'default',
|
||||
'editondblclick' => 0,
|
||||
'editsection' => 1,
|
||||
'editsectiononrightclick' => 0,
|
||||
'enotifminoredits' => 0,
|
||||
'enotifrevealaddr' => 0,
|
||||
|
|
|
|||
|
|
@ -792,13 +792,6 @@ class Preferences {
|
|||
global $wgAllowUserCssPrefs;
|
||||
|
||||
## Editing #####################################
|
||||
if ( $wgAllowUserCssPrefs ) {
|
||||
$defaultPreferences['editsection'] = array(
|
||||
'type' => 'toggle',
|
||||
'section' => 'editing/advancedediting',
|
||||
'label-message' => 'tog-editsection',
|
||||
);
|
||||
}
|
||||
$defaultPreferences['editsectiononrightclick'] = array(
|
||||
'type' => 'toggle',
|
||||
'section' => 'editing/advancedediting',
|
||||
|
|
|
|||
|
|
@ -80,9 +80,6 @@ class ResourceLoaderUserCSSPrefsModule extends ResourceLoaderModule {
|
|||
if ( !$options['showtoc'] ) {
|
||||
$rules[] = "#toc { display: none; }\n";
|
||||
}
|
||||
if ( !$options['editsection'] ) {
|
||||
$rules[] = ".mw-editsection { display: none; }\n";
|
||||
}
|
||||
if ( $options['editfont'] !== 'default' ) {
|
||||
// Double-check that $options['editfont'] consists of safe characters only
|
||||
if ( preg_match( '/^[a-zA-Z0-9_, -]+$/', $options['editfont'] ) ) {
|
||||
|
|
|
|||
|
|
@ -667,7 +667,6 @@ future releases. Also note that since each list value is wrapped in a unique
|
|||
'tog-numberheadings' => 'Auto-number headings',
|
||||
'tog-showtoolbar' => 'Show edit toolbar',
|
||||
'tog-editondblclick' => 'Edit pages on double click',
|
||||
'tog-editsection' => 'Enable section editing via [edit] links',
|
||||
'tog-editsectiononrightclick' => 'Enable section editing by right clicking on section titles',
|
||||
'tog-showtoc' => 'Show table of contents (for pages with more than 3 headings)',
|
||||
'tog-rememberpassword' => 'Remember my login on this browser (for a maximum of $1 {{PLURAL:$1|day|days}})',
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ $wgMessageStructure = array(
|
|||
'tog-numberheadings',
|
||||
'tog-showtoolbar',
|
||||
'tog-editondblclick',
|
||||
'tog-editsection',
|
||||
'tog-editsectiononrightclick',
|
||||
'tog-showtoc',
|
||||
'tog-rememberpassword',
|
||||
|
|
|
|||
Loading…
Reference in a new issue