Changeset 4833
- Timestamp:
- 08/27/08 03:14:06 (10 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Cache/Apc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Cache/Apc.php
r4782 r4833 55 55 public function fetch($id, $testCacheValidity = true) 56 56 { 57 return apc_fetch($id); 57 $results = apc_fetch($id); 58 $results = (array) $results; 59 return $results[0]; 58 60 } 59 61