From c45b456725e436df7d4087c454c793f8550beff4 Mon Sep 17 00:00:00 2001 From: "James D. Forrester" Date: Sat, 16 Aug 2014 15:37:22 +0100 Subject: [PATCH] Set default setting for thumbsize to 300px (index 5) not 180px Bug: 67703 Change-Id: I172ccc0128747090a199695d3bce04388b3bef57 --- RELEASE-NOTES-1.24 | 3 +++ includes/DefaultSettings.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.24 b/RELEASE-NOTES-1.24 index 01f8b0a6ca..c447da8963 100644 --- a/RELEASE-NOTES-1.24 +++ b/RELEASE-NOTES-1.24 @@ -60,6 +60,9 @@ production. specifying subprojects on the interwiki map of the target wiki, or a mix of the two. Existing configurations will still work. * Users must be able to edit through a page's protection to be able to delete it. +* The default thumb size ($wgDefaultUserOptions['thumbsize']) is now 300px, up from + 180px. If you have altered the number of entries in $wgThumbLimits for your wiki, you + may need to adjust your default user settings to compensate for the index change. === New features in 1.24 === * Added a new hook, "WhatLinksHereProps", to allow extensions to annotate diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index fd26cfe5d3..68fa0b5aa7 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4248,7 +4248,7 @@ $wgDefaultUserOptions = array( 'showtoolbar' => 1, 'skin' => false, 'stubthreshold' => 0, - 'thumbsize' => 2, + 'thumbsize' => 5, 'underline' => 2, 'uselivepreview' => 0, 'usenewrc' => 0, -- 2.20.1