Corrected missing second param in __() in Dispatcher::dispatch()

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5812 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-10-20 07:09:05 +00:00
parent 803a38105a
commit 78cb76d41b

View file

@ -135,7 +135,7 @@ class Dispatcher extends Object {
Router::setRequestInfo(array($this->params, array('base' => $this->base, 'webroot' => $this->webroot)));
return $this->cakeError('error404', array(array('url' => strtolower($controller),
'message' => __('Was not found on this server'),
'message' => __('Was not found on this server', true),
'base' => $this->base)));
} else {
Router::setRequestInfo(array($this->params, array('base' => $this->base, 'webroot' => $this->webroot)));