Skip to content

Commit

Permalink
Translation fix
Browse files Browse the repository at this point in the history
Fixes #2340

Signed-off-by: mark_story <mark@mark-story.com>
  • Loading branch information
euromark authored and markstory committed Dec 6, 2011
1 parent ba81754 commit f9d1256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Error/ExceptionRenderer.php
Expand Up @@ -222,7 +222,7 @@ public function error400($error) {
public function error500($error) {
$message = $error->getMessage();
if (Configure::read('debug') == 0) {
$message = __d('cake', 'An Internal Error Has Occurred');
$message = __d('cake', 'An Internal Error Has Occurred.');
}
$url = $this->controller->request->here();
$code = ($error->getCode() > 500 && $error->getCode() < 506) ? $error->getCode() : 500;
Expand Down

0 comments on commit f9d1256

Please sign in to comment.