Skip to content

Commit

Permalink
Fixing parse error that caused scaffold test to not run and not pass.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 31, 2010
1 parent 75d7b46 commit 713e6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/controller/scaffold.php
Expand Up @@ -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);
Expand Down

0 comments on commit 713e6e6

Please sign in to comment.