diff options
author | Greg Aker <greg@gregaker.net> | 2011-10-15 06:36:55 +0200 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-10-15 06:36:55 +0200 |
commit | 3078bb622c63315b04b2a0488103dddd44c0960f (patch) | |
tree | 4d2cdfba9e50de0032f69e32441e6d63e8c1c019 /system | |
parent | a2125a5d830fd390b4cf35f77e9bb0558cfa2dd7 (diff) | |
parent | 4d7c27eec7995c94f60ba421e209eb5a2da08711 (diff) |
Merge pull request #579 from appleboy/bug/cache
Fix #576: using ini_get() to detect if apc is enabled or not
Diffstat (limited to 'system')
-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 */ |