Changeset 4041

Show
Ignore:
Timestamp:
03/19/08 05:49:55 (16 months ago)
Author:
jwage
Message:

fixes #879

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/lib/Doctrine/Cache/Apc.php

    r3884 r4041  
    9191    public function save($id, $data, $lifeTime = false) 
    9292    { 
    93         $lifeTime = $this->getLifeTime($lifeTime); 
    94  
    9593        return (bool) apc_store($id, array($data, time()), $lifeTime); 
    9694    }