diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-01-24 22:37:20 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-01-24 22:37:20 +0100 |
commit | 8f9e93dd37ae0090c9b4117138cd3135bfe3f67a (patch) | |
tree | 3f49040d696e760381642f2d2ffa407cee1dc039 /system/libraries/Cache/drivers/Cache_apc.php | |
parent | de15a0b7377db0ef3b1d43508401be3c2927c0ff (diff) | |
parent | 96db8f91c34c18119548cacc4692362f51e70407 (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_apc.php')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_apc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apc.php b/system/libraries/Cache/drivers/Cache_apc.php index 90b68688d..a3dd46978 100644 --- a/system/libraries/Cache/drivers/Cache_apc.php +++ b/system/libraries/Cache/drivers/Cache_apc.php @@ -18,7 +18,7 @@ * * @package CodeIgniter * @author EllisLab Dev Team - * @copyright Copyright (c) 2006 - 2011 EllisLab, Inc. + * @copyright Copyright (c) 2006 - 2012 EllisLab, Inc. * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * @link http://codeigniter.com * @since Version 2.0 @@ -68,6 +68,7 @@ class CI_Cache_apc extends CI_Driver { */ public function save($id, $data, $ttl = 60) { + $ttl = (int) $ttl; return apc_store($id, array($data, time(), $ttl), $ttl); } |