summaryrefslogtreecommitdiffstats
path: root/lib/debug.lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/debug.lib.php')
-rw-r--r--lib/debug.lib.php4
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;
}