This commit is contained in:
Damyon Wiese
2014-02-24 12:30:55 +08:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -216,7 +216,7 @@ class cachestore_memcache extends cache_store implements cache_is_configurable {
* @return int
*/
public static function get_supported_modes(array $configuration = array()) {
return self::MODE_APPLICATION + self::MODE_SESSION;
return self::MODE_APPLICATION;
}
/**
+1 -1
View File
@@ -224,7 +224,7 @@ class cachestore_memcached extends cache_store implements cache_is_configurable
* @return int
*/
public static function get_supported_modes(array $configuration = array()) {
return self::MODE_APPLICATION + self::MODE_SESSION;
return self::MODE_APPLICATION;
}
/**
+1 -1
View File
@@ -175,7 +175,7 @@ class cachestore_mongodb extends cache_store implements cache_is_configurable {
* @return int
*/
public static function get_supported_modes(array $configuration = array()) {
return self::MODE_APPLICATION + self::MODE_SESSION;
return self::MODE_APPLICATION;
}
/**