diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2010-05-04 19:51:23 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2010-05-04 19:51:23 +0000 |
commit | e3a62e8c5fa860854ebbb422be4f34f32e9934af (patch) | |
tree | 3043aaf1f1e7ceea15ced02638fbac1cbb28e5f2 /lib/init.php | |
parent | 82780455c4bc68d39963819a02bd499a612861e1 (diff) | |
download | ampache-e3a62e8c5fa860854ebbb422be4f34f32e9934af.tar.gz ampache-e3a62e8c5fa860854ebbb422be4f34f32e9934af.tar.bz2 ampache-e3a62e8c5fa860854ebbb422be4f34f32e9934af.zip |
fix notice due to undefined indexes when checking for unset config values
Diffstat (limited to 'lib/init.php')
-rw-r--r-- | lib/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/init.php b/lib/init.php index 7dddb533..6b3fef8a 100644 --- a/lib/init.php +++ b/lib/init.php @@ -174,7 +174,7 @@ if ($results['memory_limit'] < 24) { } // Incase the local setting is 0 -ini_set('session.gc_probability','2'); +ini_set('session.gc_probability','5'); set_memory_limit($results['memory_limit']); |