fixed extra space in auth msg, closes #3531

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5953 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
gwoo 2007-11-05 18:03:36 +00:00
parent 23467f8800
commit 33ce66dd54

View file

@ -226,7 +226,7 @@ class AuthComponent extends Object {
$this->params = $controller->params;
$crud = array('create', 'read', 'update', 'delete');
$this->actionMap = am($this->actionMap, array_combine($crud, $crud));
$this->loginError = __('Login failed. Invalid username or password.', true);
$this->loginError = __('Login failed. Invalid username or password.', true);
$this->authError = __('You are not authorized to access that location.', true);
$admin = Configure::read('Routing.admin');