Changeset 6839

Show
Ignore:
Timestamp:
12/01/09 14:19:05 (8 months ago)
Author:
jwage
Message:

[1.2][DC-298] Fixes issue with array cache driver and deleting

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.2/lib/Doctrine/Cache/Array.php

    r6821 r6839  
    9090    protected function _doDelete($id) 
    9191    { 
     92        $exists = isset($this->data[$id]); 
     93 
    9294        unset($this->data[$id]); 
    9395 
    94         return true; 
     96        return $exists; 
    9597    } 
    9698}