Set $wgUploadSizeWarning to false by default. The warning only makes sense in the...
authorTim Starling <tstarling@users.mediawiki.org>
Thu, 27 Mar 2008 01:35:09 +0000 (01:35 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Thu, 27 Mar 2008 01:35:09 +0000 (01:35 +0000)
RELEASE-NOTES
includes/DefaultSettings.php

index ba245a1..e5c6b8f 100644 (file)
@@ -23,6 +23,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * New option $wgFeed can be set false to turn off syndication feeds
 * (bug 5745) Special:Whatlinkshere now shows up to $wgMaxRedirectLinksRetrieved
   links through each redirect instead of hardcoded 500
+* Set $wgUploadSizeWarning to false by default
 
 === New features in 1.13 ===
 
index ce22374..5a2d37a 100644 (file)
@@ -1682,8 +1682,8 @@ $wgCheckFileExtensions = true;
  */
 $wgStrictFileExtensions = true;
 
-/** Warn if uploaded files are larger than this (in bytes)*/
-$wgUploadSizeWarning = 150 * 1024;
+/** Warn if uploaded files are larger than this (in bytes), or false to disable*/
+$wgUploadSizeWarning = false;
 
 /** For compatibility with old installations set to false */
 $wgPasswordSalt = true;