From 99c4128ee655624fccbcd4d68c9bc149ef52879d Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 30 Nov 2011 13:21:38 +0000 Subject: [PATCH] Increased Suhosin minimum value for get_max_value to 2048 due to a bug seen on some installations SVN:trunk[1699] --- setup/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/index.php b/setup/index.php index 4777e749d..7b2ca2866 100644 --- a/setup/index.php +++ b/setup/index.php @@ -37,7 +37,7 @@ define('FINAL_CONFIG_FILE', APPROOT.'/config-itop.php'); define('PHP_MIN_VERSION', '5.2.0'); define('MYSQL_MIN_VERSION', '5.0.0'); define('MIN_MEMORY_LIMIT', 32*1024*1024); -define('SUHOSIN_GET_MAX_VALUE_LENGTH', 1024); +define('SUHOSIN_GET_MAX_VALUE_LENGTH', 2048); $sOperation = Utils::ReadParam('operation', 'step0'); $oP = new SetupWebPage('iTop configuration wizard');