Kohana v3.3.2

This commit is contained in:
Deon George
2014-09-06 23:43:07 +10:00
parent f96694b18f
commit 8888719653
236 changed files with 1685 additions and 996 deletions

View File

@@ -232,10 +232,10 @@ class Kohana_View {
/**
* Display the exception message.
*
* We use this method here because it's impossible to throw and
* We use this method here because it's impossible to throw an
* exception from __toString().
*/
$error_response = Kohana_exception::_handler($e);
$error_response = Kohana_Exception::_handler($e);
return $error_response->body();
}
@@ -348,4 +348,4 @@ class Kohana_View {
return View::capture($this->_file, $this->_data);
}
} // End View
}