MDL-36357 cache: removed double semicolon

This commit is contained in:
Sam Hemelryk
2013-01-09 09:37:09 +13:00
parent f44e7d0a77
commit 086e78da69
+2 -2
View File
@@ -123,7 +123,7 @@ class cache_factory {
self::$instance = new cache_factory();
if (defined('CACHE_DISABLE_STORES') && CACHE_DISABLE_STORES !== false) {
// The cache stores have been disabled.
self::$instance->set_state(self::STATE_STORES_DISABLED);;
self::$instance->set_state(self::STATE_STORES_DISABLED);
}
}
}
@@ -469,4 +469,4 @@ class cache_factory {
$factory = self::instance();
$factory->set_state(self::STATE_STORES_DISABLED);
}
}
}