Bump default memory limit from 32MB to 40MB. fixes #21646.

git-svn-id: https://develop.svn.wordpress.org/trunk@21809 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-09-11 01:41:56 +00:00
parent 1e270f44a4
commit fd6d9b96e8
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ function wp_initial_constants( ) {
if( is_multisite() ) {
define('WP_MEMORY_LIMIT', '64M');
} else {
define('WP_MEMORY_LIMIT', '32M');
define('WP_MEMORY_LIMIT', '40M');
}
}