Removed "Enable section editing via [edit] links" from preferences
authortonythomas01 <01tonythomas@gmail.com>
Wed, 4 Dec 2013 17:47:33 +0000 (23:17 +0530)
committertonythomas01 <01tonythomas@gmail.com>
Fri, 24 Jan 2014 18:34:40 +0000 (00:04 +0530)
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

RELEASE-NOTES-1.23
includes/DefaultSettings.php
includes/Preferences.php
includes/resourceloader/ResourceLoaderUserCSSPrefsModule.php
languages/messages/MessagesEn.php
maintenance/language/messages.inc

index 21d8548..b80a9a9 100644 (file)
@@ -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)
index 11b4ef6..09f30a4 100644 (file)
@@ -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,
index e7eab17..8d6ee59 100644 (file)
@@ -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',
index a9d1076..12798f7 100644 (file)
@@ -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'] ) ) {
index f9ea261..a3ff563 100644 (file)
@@ -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}})',
index d51cdd0..620ecd2 100644 (file)
@@ -37,7 +37,6 @@ $wgMessageStructure = array(
                'tog-numberheadings',
                'tog-showtoolbar',
                'tog-editondblclick',
-               'tog-editsection',
                'tog-editsectiononrightclick',
                'tog-showtoc',
                'tog-rememberpassword',