From 74693f9d9fb1bb8f49594ee130013cf865fe3638 Mon Sep 17 00:00:00 2001 From: Shish Date: Tue, 2 Feb 2010 18:12:16 +0000 Subject: [PATCH] make apc not warn --- core/database.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/database.class.php b/core/database.class.php index 6471fa53..91fa60ea 100644 --- a/core/database.class.php +++ b/core/database.class.php @@ -292,7 +292,7 @@ class Database { $this->cache = new MemcacheCache($matches[2]); } else if($matches[1] == "apc") { - $this->cache = new APCCache(); + $this->cache = new APCCache($matches[2]); } } else {