From: Fabien Potencier Date: Sun, 6 Feb 2011 20:03:13 +0000 (+0100) Subject: Revert "added the possibility to pass a readable name for templates" X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=bb7e4229094f51471ef2397499812d217961cfcb;p=web%2Fkonrad%2Ftwig.git Revert "added the possibility to pass a readable name for templates" This reverts commit 7a7c23f197482e1c04c70f10b12c2705f358cde6. --- diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index 321de23..92809ed 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -272,17 +272,12 @@ class Twig_Environment /** * Loads a template by name. * - * @param string $name The template name - * @param string $short The template name to use for error messages + * @param string $name The template name * * @return Twig_TemplateInterface A template instance representing the given template name */ - public function loadTemplate($name, $short = null) + public function loadTemplate($name) { - if (null === $short) { - $short = $name; - } - $cls = $this->getTemplateClass($name); if (isset($this->loadedTemplates[$cls])) { @@ -291,10 +286,10 @@ class Twig_Environment if (!class_exists($cls, false)) { if (false === $cache = $this->getCacheFilename($name)) { - eval('?>'.$this->compileSource($this->loader->getSource($name), $short)); + eval('?>'.$this->compileSource($this->loader->getSource($name), $name)); } else { if (!file_exists($cache) || ($this->isAutoReload() && !$this->loader->isFresh($name, filemtime($cache)))) { - $this->writeCacheFile($cache, $this->compileSource($this->loader->getSource($name), $short)); + $this->writeCacheFile($cache, $this->compileSource($this->loader->getSource($name), $name)); } require_once $cache;