commit | 3db2849dcf104127aee23ee69ba67011ebdfa91c | [log] [tgz] |
---|---|---|
author | Ben Edmunds <ben.edmunds@gmail.com> | Sat Aug 20 14:12:12 2011 -0500 |
committer | Ben Edmunds <ben.edmunds@gmail.com> | Sat Aug 20 14:12:12 2011 -0500 |
tree | a7332803e8f0ef06280c92722e45d9fb33825702 | |
parent | 80f4c34d1c5a51d82ae3dd898a12466e01790f10 [diff] [blame] |
Resolved issue 48. Removed unneeded array copy.
diff --git a/system/libraries/Cache/drivers/Cache_file.php b/system/libraries/Cache/drivers/Cache_file.php index edb48ac..6c37e70 100644 --- a/system/libraries/Cache/drivers/Cache_file.php +++ b/system/libraries/Cache/drivers/Cache_file.php
@@ -165,8 +165,8 @@ } return array( - 'expire' => $mtime + $data['data']['ttl'], - 'mtime' => $mtime + 'expire' => $mtime + $data['data']['ttl'], + 'mtime' => $mtime ); }