diff options
author | momo-i <momo-i@ampache> | 2008-09-03 00:06:29 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2008-09-03 00:06:29 +0000 |
commit | 7a6e4825d9738bd4c51deeb2eff942f2ffcbc5c5 (patch) | |
tree | 2636a9e425d21e6fe59c39ee253cb46b7742f22c /lib/debug.lib.php | |
parent | f1866160fd048035f9f0f729f3d20283d64aa4a7 (diff) | |
download | ampache-7a6e4825d9738bd4c51deeb2eff942f2ffcbc5c5.tar.gz ampache-7a6e4825d9738bd4c51deeb2eff942f2ffcbc5c5.tar.bz2 ampache-7a6e4825d9738bd4c51deeb2eff942f2ffcbc5c5.zip |
Diffstat (limited to 'lib/debug.lib.php')
-rw-r--r-- | lib/debug.lib.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 3310f3bd..680446bf 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -193,9 +193,9 @@ function check_putenv() { /* Check memory */ $current = ini_get('memory_limit'); $current = substr($current_memory,0,strlen($current_memory)-1); - $new_limit = ($current+1) . "M"; + $new_limit = ($current+16) . "M"; - /* Bump it by one meg */ + /* Bump it by 16 megs (for getid3)*/ if (!ini_set(memory_limit,$new_limit)) { return false; } |