absint is not defined yet. see #4762

git-svn-id: https://develop.svn.wordpress.org/trunk@6684 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-01-29 20:00:17 +00:00
parent 7195355b63
commit 2b2a48cbb5
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
if ( !defined('WP_MEMORY_LIMIT') ) if ( !defined('WP_MEMORY_LIMIT') )
define('WP_MEMORY_LIMIT', '32M'); define('WP_MEMORY_LIMIT', '32M');
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < absint(WP_MEMORY_LIMIT) ) ) if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
@ini_set('memory_limit', WP_MEMORY_LIMIT); @ini_set('memory_limit', WP_MEMORY_LIMIT);
/** /**