Changeset 25987 for branches/3.7
- Timestamp:
- 10/29/2013 08:07:04 PM (11 years ago)
- Location:
- branches/3.7
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 25986
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-admin/about.php
r25984 r25987 39 39 <h3><?php echo _n( 'Maintenance Release', 'Maintenance Releases', 1 ); ?></h3> 40 40 <p><?php printf( _n( '<strong>Version %1$s</strong> addressed %2$s bug.', 41 '<strong>Version %1$s</strong> addressed %2$s bugs.', 1 0 ), '3.7.1', number_format_i18n( 10) ); ?>41 '<strong>Version %1$s</strong> addressed %2$s bugs.', 11 ), '3.7.1', number_format_i18n( 11 ) ); ?> 42 42 <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_3.7.1' ); ?> 43 43 </p> -
branches/3.7/src/wp-includes/default-constants.php
r25685 r25987 43 43 $current_limit = @ini_get( 'memory_limit' ); 44 44 $current_limit_int = intval( $current_limit ); 45 if ( false !== str ipos( $current_limit, 'G' ) )45 if ( false !== strpos( $current_limit, 'G' ) ) 46 46 $current_limit_int *= 1024; 47 47 $wp_limit_int = intval( WP_MEMORY_LIMIT ); 48 if ( false !== str ipos( WP_MEMORY_LIMIT, 'G' ) )48 if ( false !== strpos( WP_MEMORY_LIMIT, 'G' ) ) 49 49 $wp_limit_int *= 1024; 50 50 -
branches/3.7/src/wp-includes/l10n.php
r25652 r25987 798 798 'X-Generator' => '"X-Generator', 799 799 ) ); 800 foreach ( $headers as &$header) {800 foreach ( $headers as $header => $value ) { 801 801 // Remove possible contextual '\n' and closing double quote. 802 $header = preg_replace( '~(\\\n)?"$~', '', $header);802 $headers[ $header ] = preg_replace( '~(\\\n)?"$~', '', $value ); 803 803 } 804 804 return $headers;
Note: See TracChangeset
for help on using the changeset viewer.