Changeset 25987 for branches/3.7/src/wp-includes/default-constants.php
- Timestamp:
- 10/29/2013 08:07:04 PM (12 years ago)
- Location:
- branches/3.7
- Files:
-
- 3 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-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
Note: See TracChangeset
for help on using the changeset viewer.