Fixes cf68822121 for Kohana 3.1 compatibility

This commit is contained in:
Woody Gilk 2011-03-29 11:03:43 -05:00
parent 1b6e7b7781
commit 185e9d4905

View file

@ -111,7 +111,7 @@ abstract class Kohana_Kostache {
ob_start(); ob_start();
// Render the exception // Render the exception
Kohana::exception_handler($e); Kohana_Exception::handler($e);
return (string) ob_get_clean(); return (string) ob_get_clean();
} }