diff --git a/framework/yii/caching/ApcCache.php b/framework/yii/caching/ApcCache.php index 688c3f1..8a0d207 100644 --- a/framework/yii/caching/ApcCache.php +++ b/framework/yii/caching/ApcCache.php @@ -124,6 +124,10 @@ class ApcCache extends Cache */ protected function flushValues() { - return apc_clear_cache('user'); + if (extension_loaded('apcu')) { + return apc_clear_cache(); + } else { + return apc_clear_cache('user'); + } } }