lower max article cache size (30 to 20)

This commit is contained in:
Andrew Dolgov
2007-05-15 07:02:35 +01:00
parent 3de0261a53
commit 7289eacf91
+1 -1
View File
@@ -810,7 +810,7 @@ function cache_check(id) {
} }
function cache_expire() { function cache_expire() {
while (article_cache.length > 30) { while (article_cache.length > 20) {
article_cache.shift(); article_cache.shift();
} }
} }