From 78cb76d41b79f35e1ba1f68c4d91c000536e1e47 Mon Sep 17 00:00:00 2001 From: phpnut Date: Sat, 20 Oct 2007 07:09:05 +0000 Subject: [PATCH] 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 --- cake/dispatcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/dispatcher.php b/cake/dispatcher.php index 33c0b63fb..520383928 100644 --- a/cake/dispatcher.php +++ b/cake/dispatcher.php @@ -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)));