BUG Fix incorrect cache key generation

This commit is contained in:
Damian Mooyman 2015-05-12 15:23:14 +12:00
parent adb71a7823
commit 1f4083dda4

View File

@ -58,7 +58,7 @@ class FileTextCache_SSCache implements FileTextCache, Flushable {
}
protected function getKey(File $file) {
return md5($file->getFullPath);
return md5($file->getFullPath());
}
public function load(File $file) {