summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/libraries/Cache/drivers/Cache_apcu.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apcu.php b/system/libraries/Cache/drivers/Cache_apcu.php
index 584162d32..56e553395 100644
--- a/system/libraries/Cache/drivers/Cache_apcu.php
+++ b/system/libraries/Cache/drivers/Cache_apcu.php
@@ -169,12 +169,11 @@ class CI_Cache_apcu extends CI_Driver {
/**
* Cache Info
*
- * @param bool Whether to exclude the individual list of cache entries
* @return mixed array on success, false on failure
*/
- public function cache_info($limited = FALSE)
+ public function cache_info()
{
- return apcu_cache_info($limited);
+ return apcu_cache_info();
}
// ------------------------------------------------------------------------