From 713e6e62875dc6e99914d91bad23ad41518f70f6 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 30 May 2010 22:41:52 -0400 Subject: [PATCH] Fixing parse error that caused scaffold test to not run and not pass. --- cake/libs/controller/scaffold.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/controller/scaffold.php b/cake/libs/controller/scaffold.php index 2902cc4d836..9913608e6c1 100644 --- a/cake/libs/controller/scaffold.php +++ b/cake/libs/controller/scaffold.php @@ -390,7 +390,7 @@ function __scaffoldDelete($params = array()) { if ($this->ScaffoldModel->delete($id)) { $message = __( - sprintf('The %1$s with id: %2$d has been deleted.', Inflector::humanize($this->modelClass), $id), + sprintf('The %1$s with id: %2$d has been deleted.', Inflector::humanize($this->modelClass), $id) ); if ($this->_validSession) { $this->controller->Session->setFlash($message);