Fixing failing cache tests.

This commit is contained in:
mark_story 2011-08-14 14:45:47 -04:00
parent d93c8cb200
commit e29eb1cb03

View file

@ -127,7 +127,7 @@ class FileEngine extends CacheEngine {
$expires = time() + $duration;
$contents = $expires . $lineBreak . $data . $lineBreak;
if (!$handle = fopen($this->_File->path, 'c')) {
if (!$handle = fopen($this->_File->getPathName(), 'c')) {
return false;
}