Make WordPress Core

Ticket #21650: 14157-ms-php.fixed.diff

File 14157-ms-php.fixed.diff, 1.5 KB (added by voldemortensen, 10 years ago)
  • media.php

     
    30203020
    30213021                // Media Library
    30223022                'editMetadata' => __( 'Edit Metadata' ),
    3023                 'noMedia'      => __( 'No media found. Try a different search.' ),
     3023                'noMedia'      => __( 'No media attachments found.' ),
    30243024        );
    30253025
    30263026        /**
  • cache.php

     
    639639                echo "</p>";
    640640                echo '<ul>';
    641641                foreach ($this->cache as $group => $cache) {
    642                         echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';
     642                        try {
     643                                echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';
     644                        } catch( Exception $e ) {
     645                                echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( print_r( $cache, true ) ) / 1024, 2 ) . 'k )</li>';
     646                        }
    643647                }
    644648                echo '</ul>';
    645649        }
  • 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