summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/Cache.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-04-02 15:44:58 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-04-02 15:44:58 +0200
commiteb2dcda02cd338f3230161b03ac4a55956b31bf9 (patch)
tree352de0920d310e2c8ff8a8c415d45e8f74c17d9a /system/libraries/Cache/Cache.php
parent9d0e61768acc8eb6adfd032cdc6fbeac4c024598 (diff)
Added CI_ Prefix to the Cache driver.
Diffstat (limited to 'system/libraries/Cache/Cache.php')
-rw-r--r--system/libraries/Cache/Cache.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Cache/Cache.php b/system/libraries/Cache/Cache.php
index d3f6105ea..61e7aa761 100644
--- a/system/libraries/Cache/Cache.php
+++ b/system/libraries/Cache/Cache.php
@@ -24,11 +24,11 @@
* @author ExpressionEngine Dev Team
* @link
*/
-class Cache extends CI_Driver_Library {
+class CI_Cache extends CI_Driver_Library {
protected $valid_drivers = array(
- 'cache_apc', 'cache_file', 'cache_memcached', 'cache_dummy'
- );
+ 'cache_apc', 'cache_file', 'cache_memcached', 'cache_dummy'
+ );
protected $_cache_path = NULL; // Path of cache files (if file-based cache)
protected $_adapter = 'dummy';