changed the cache extension to .php (closes #15)

git-svn-id: http://svn.twig-project.org/trunk@83 93ef8e89-cb99-4229-a87c-7fa0fa45744b
This commit is contained in:
fabien
2009-10-20 04:46:30 +00:00
parent 2bb3c75450
commit fc798571f9
+1 -1
View File
@@ -110,7 +110,7 @@ abstract class Twig_Loader implements Twig_LoaderInterface
public function getCacheFilename($name)
{
return $this->cache.'/twig_'.md5($name).'.cache';
return $this->cache.'/twig_'.md5($name).'.php';
}
protected function compile($source, $name)