Fixed an exception in cache handler fallback
authorMarcel Werk <burntime@woltlab.com>
Tue, 26 Jul 2011 18:49:57 +0000 (20:49 +0200)
committerMarcel Werk <burntime@woltlab.com>
Tue, 26 Jul 2011 18:49:57 +0000 (20:49 +0200)
wcfsetup/install/files/lib/system/cache/CacheHandler.class.php

index 7cc9831a174715b9fc0b08aff918bd3685b82603..7e1d47260e7a672333e23fde1403894a6d420576 100644 (file)
@@ -41,7 +41,7 @@ class CacheHandler extends SingletonFactory {
                catch (SystemException $e) {
                        if (CACHE_SOURCE_TYPE != 'disk') {
                                // fallback to disk cache
-                               $this->cacheSource = new wcf\system\cache\source\DiskCacheSource();
+                               $this->cacheSource = new \wcf\system\cache\source\DiskCacheSource();
                        }
                        else {
                                throw $e;