Skip to content

Commit

Permalink
Merge pull request #1372 from wernerhp/master
Browse files Browse the repository at this point in the history
Fixed Scaffold view "delete" message translation string
  • Loading branch information
markstory committed Jun 23, 2013
2 parents 3e8a7f5 + 9383236 commit 468eb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/View/Scaffolds/view.ctp
Expand Up @@ -56,7 +56,7 @@ foreach ($scaffoldFields as $_field) {
echo " </li>\n";

echo "\t\t<li>";
echo $this->Form->postLink(__d('cake', 'Delete %s', $singularHumanName), array('action' => 'delete', ${$singularVar}[$modelClass][$primaryKey]), null, __d('cake', 'Are you sure you want to delete').' #' . ${$singularVar}[$modelClass][$primaryKey] . '?');
echo $this->Form->postLink(__d('cake', 'Delete %s', $singularHumanName), array('action' => 'delete', ${$singularVar}[$modelClass][$primaryKey]), null, __d('cake', 'Are you sure you want to delete # %s?', ${$singularVar}[$modelClass][$primaryKey]));
echo " </li>\n";

echo "\t\t<li>";
Expand Down

0 comments on commit 468eb94

Please sign in to comment.