Skip to content

Commit

Permalink
Add missing sprintf in shell.php
Browse files Browse the repository at this point in the history
One sprintf was missed in the removal of translation methods from the shell.
  • Loading branch information
dakota committed Aug 6, 2014
1 parent 024be04 commit 5b05ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Shell.php
Expand Up @@ -215,7 +215,7 @@ public function startup() {
*/
protected function _welcome() {
$this->out();
$this->out('<info>Welcome to CakePHP %s Console</info>', 'v' . Configure::version());
$this->out(sprintf('<info>Welcome to CakePHP %s Console</info>', 'v' . Configure::version()));
$this->hr();
$this->out(sprintf('App : %s', APP_DIR));
$this->out(sprintf('Path: %s', APP));
Expand Down

0 comments on commit 5b05ade

Please sign in to comment.