Make WordPress Core

Changeset 25986 for trunk/src


Ignore:
Timestamp:
10/29/2013 08:05:16 PM (12 years ago)
Author:
nacin
Message:

PHP4 compatibility for files loaded before we bail. fixes #25760.

Location:
trunk/src/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/default-constants.php

    r25685 r25986  
    4343        $current_limit = @ini_get( 'memory_limit' );
    4444        $current_limit_int = intval( $current_limit );
    45         if ( false !== stripos( $current_limit, 'G' ) )
     45        if ( false !== strpos( $current_limit, 'G' ) )
    4646            $current_limit_int *= 1024;
    4747        $wp_limit_int = intval( WP_MEMORY_LIMIT );
    48         if ( false !== stripos( WP_MEMORY_LIMIT, 'G' ) )
     48        if ( false !== strpos( WP_MEMORY_LIMIT, 'G' ) )
    4949            $wp_limit_int *= 1024;
    5050
  • trunk/src/wp-includes/l10n.php

    r25652 r25986  
    798798        'X-Generator'        => '"X-Generator',
    799799    ) );
    800     foreach ( $headers as &$header ) {
     800    foreach ( $headers as $header => $value ) {
    801801        // Remove possible contextual '\n' and closing double quote.
    802         $header = preg_replace( '~(\\\n)?"$~', '', $header );
     802        $headers[ $header ] = preg_replace( '~(\\\n)?"$~', '', $value );
    803803    }
    804804    return $headers;
Note: See TracChangeset for help on using the changeset viewer.