summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache
diff options
context:
space:
mode:
authorJohn Bellone <jb@thunkbrightly.com>2011-08-21 15:32:35 +0200
committerJohn Bellone <jb@thunkbrightly.com>2011-08-21 15:32:35 +0200
commit02d736992f45d7b3c72b900ae2b69af9ca319e6e (patch)
tree01e0918fa67109ea4bccf6b0980d078e7da9ad65 /system/libraries/Cache
parent0ad834c03b0300ec9bf111a69bc3af0ed724c6cd (diff)
Returning value from _setup_memcached() now
Diffstat (limited to 'system/libraries/Cache')
-rw-r--r--system/libraries/Cache/drivers/Cache_memcached.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/system/libraries/Cache/drivers/Cache_memcached.php b/system/libraries/Cache/drivers/Cache_memcached.php
index 8047e5853..51f317507 100644
--- a/system/libraries/Cache/drivers/Cache_memcached.php
+++ b/system/libraries/Cache/drivers/Cache_memcached.php
@@ -218,9 +218,8 @@ class CI_Cache_memcached extends CI_Driver {
return FALSE;
}
-
- $this->_setup_memcached();
- return TRUE;
+
+ return $this->_setup_memcached();
}
// ------------------------------------------------------------------------