From a5246f532f54fde0b6d54d47bfea6df57f2ee853 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 29 Jan 2008 20:00:17 +0000 Subject: [PATCH] absint is not defined yet. see #4762 git-svn-id: http://svn.automattic.com/wordpress/trunk@6684 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 8732710ff..5fc0cf53c 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -12,7 +12,7 @@ if ( !defined('WP_MEMORY_LIMIT') ) 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); /**