From e9133f9825735a072bb3ce54daac1d85edb3a806 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Thu, 2 Nov 2006 00:28:37 +0000 Subject: fixed mpd logic error and post max size --- lib/debug.lib.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/debug.lib.php') diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 5320e019..08cf7d6d 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -356,6 +356,11 @@ function check_putenv() { return false; } + /* Check and see if we can up the post limit */ + if (!ini_set(post_max_size,'8M')) { + return false; + } + /* Check if safe mode is on */ if (ini_get('safe_mode')) { return false; -- cgit