diff options
author | Timothy Warren <tim@timshomepage.net> | 2011-10-17 18:19:08 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2011-10-17 18:19:08 +0200 |
commit | d926b8fbd9e25d7c088a055cd29bbf6a93f69a8c (patch) | |
tree | 8cdc3bba85f523b4bc13e4a8ba8d915603b75049 /system/libraries/Cache/drivers/Cache_apc.php | |
parent | 5600828101627a76768e4f1edbb0197d11885318 (diff) | |
parent | 3e414f9f72e387449d9e3984e1869b386564deaf (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into patch-2
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_apc.php')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_apc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apc.php b/system/libraries/Cache/drivers/Cache_apc.php index de75719c4..79d91b320 100644 --- a/system/libraries/Cache/drivers/Cache_apc.php +++ b/system/libraries/Cache/drivers/Cache_apc.php @@ -132,7 +132,7 @@ class CI_Cache_apc extends CI_Driver { */ public function is_supported() { - if ( ! extension_loaded('apc') OR ! function_exists('apc_store')) + if ( ! extension_loaded('apc') OR ini_get('apc.enabled') != "1") { log_message('error', 'The APC PHP extension must be loaded to use APC Cache.'); return FALSE; @@ -148,4 +148,4 @@ class CI_Cache_apc extends CI_Driver { // End Class /* End of file Cache_apc.php */ -/* Location: ./system/libraries/Cache/drivers/Cache_apc.php */
\ No newline at end of file +/* Location: ./system/libraries/Cache/drivers/Cache_apc.php */ |