replaced the Twig_Environment::load() shortcut by a more useful render() one
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 26 Mar 2011 09:24:45 +0000 (10:24 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 26 Mar 2011 09:24:45 +0000 (10:24 +0100)
lib/Twig/Environment.php

index 440a2f3..81262c8 100644 (file)
@@ -269,9 +269,17 @@ class Twig_Environment
         return $this->templateClassPrefix;
     }
 
-    public function load($name)
+    /**
+     * Renders a template.
+     *
+     * @param string $name    The template name
+     * @param array  $context An array of parameters to pass to the template
+     *
+     * @return string The rendered template
+     */
+    public function render($name, array $context = array())
     {
-        return $this->loadTemplate($name);
+        return $this->loadTemplate($name)->render($context);
     }
 
     /**