Skip to content

Commit

Permalink
+ system/libraries/Cache/drivers/Cache_file.php: Replaced time()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Mathes authored and Tobias Mathes committed Jan 19, 2012
1 parent 4faa08a commit f8c864f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/libraries/Cache/drivers/Cache_file.php 100644 → 100755
Expand Up @@ -92,7 +92,7 @@ public function get($id)
public function save($id, $data, $ttl = 60)
{
$contents = array(
'time' => time(),
'time' => $_SERVER['REQUEST_TIME'],
'ttl' => $ttl,
'data' => $data
);
Expand Down

0 comments on commit f8c864f

Please sign in to comment.