Make WordPress Core

Ticket #29341: 29341.diff

File 29341.diff, 436 bytes (added by voldemortensen, 11 years ago)

Patch raising limit to 80M on Multisite and 64M single site.

  • default-constants.php

     
    1818        // set memory limits
    1919        if ( !defined('WP_MEMORY_LIMIT') ) {
    2020                if( is_multisite() ) {
     21                        define('WP_MEMORY_LIMIT', '80M');
     22                } else {
    2123                        define('WP_MEMORY_LIMIT', '64M');
    22                 } else {
    23                         define('WP_MEMORY_LIMIT', '40M');
    2424                }
    2525        }
    2626