Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1682,8 +1682,8 @@ |
1683 | 1683 | */ |
1684 | 1684 | $wgStrictFileExtensions = true; |
1685 | 1685 | |
1686 | | -/** Warn if uploaded files are larger than this (in bytes)*/ |
1687 | | -$wgUploadSizeWarning = 150 * 1024; |
| 1686 | +/** Warn if uploaded files are larger than this (in bytes), or false to disable*/ |
| 1687 | +$wgUploadSizeWarning = false; |
1688 | 1688 | |
1689 | 1689 | /** For compatibility with old installations set to false */ |
1690 | 1690 | $wgPasswordSalt = true; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -23,6 +23,7 @@ |
24 | 24 | * New option $wgFeed can be set false to turn off syndication feeds |
25 | 25 | * (bug 5745) Special:Whatlinkshere now shows up to $wgMaxRedirectLinksRetrieved |
26 | 26 | links through each redirect instead of hardcoded 500 |
| 27 | +* Set $wgUploadSizeWarning to false by default |
27 | 28 | |
28 | 29 | === New features in 1.13 === |
29 | 30 | |