Merge branch '3.1/master' into 3.1/develop

This commit is contained in:
Woody Gilk 2011-03-29 11:04:11 -05:00
commit eb9fc9e8c3

View file

@ -12,7 +12,7 @@
*/ */
abstract class Kohana_Kostache { abstract class Kohana_Kostache {
const VERSION = '2.0.1'; const VERSION = '2.0.2';
/** /**
* Factory method for Kostache views. Accepts a template path and an * Factory method for Kostache views. Accepts a template path and an
@ -60,8 +60,16 @@ abstract class Kohana_Kostache {
{ {
if ( ! $template) if ( ! $template)
{ {
// Detect the template for this class if ($this->_template)
$template = $this->_detect_template(); {
// Load the template defined in the view
$template = $this->_template;
}
else
{
// Detect the template for this class
$template = $this->_detect_template();
}
} }
// Load the template // Load the template
@ -103,7 +111,7 @@ abstract class Kohana_Kostache {
ob_start(); ob_start();
// Render the exception // Render the exception
Kohana_Exception::text($e); Kohana_Exception::handler($e);
return (string) ob_get_clean(); return (string) ob_get_clean();
} }