diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-13 06:04:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-13 06:04:12 +0000 |
commit | 70c2fedd2992bc2bf5309a9afcc8b810aa7f80ce (patch) | |
tree | aa531656b9015821190546c382cb3756f0c435de /lib | |
parent | 4d053815c552e77ebbab55e9f48bacbea2559cd2 (diff) | |
download | ampache-70c2fedd2992bc2bf5309a9afcc8b810aa7f80ce.tar.gz ampache-70c2fedd2992bc2bf5309a9afcc8b810aa7f80ce.tar.bz2 ampache-70c2fedd2992bc2bf5309a9afcc8b810aa7f80ce.zip |
final commit before alpha2 release
Diffstat (limited to 'lib')
-rw-r--r-- | lib/debug.lib.php | 7 | ||||
-rw-r--r-- | lib/init.php | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 08cf7d6d..04e77887 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -355,12 +355,7 @@ function check_putenv() { if (!ini_set(memory_limit,$new_limit)) { 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; diff --git a/lib/init.php b/lib/init.php index b6826943..a74d9ac4 100644 --- a/lib/init.php +++ b/lib/init.php @@ -67,7 +67,7 @@ if (!$results = read_config($configfile,0)) { } /** This is the version.... fluf nothing more... **/ -$results['version'] = '3.3.3-Alpha2 Build (004)'; +$results['version'] = '3.3.3-Alpha2'; $results['raw_web_path'] = $results['web_path']; $results['web_path'] = $http_type . $_SERVER['HTTP_HOST'] . $results['web_path']; |