Skip to content

Commit

Permalink
Use $this->bootstrap.
Browse files Browse the repository at this point in the history
$this->boostrap makes the output match the file changed.
  • Loading branch information
markstory committed Jun 19, 2012
1 parent d5cf276 commit 3c824b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/Task/PluginTask.php
Expand Up @@ -176,7 +176,7 @@ protected function _modifyBootstrap($plugin) {
if (!preg_match("@\n\s*CakePlugin::loadAll@", $contents)) {
$bootstrap->append("\nCakePlugin::load('$plugin', array('bootstrap' => false, 'routes' => false));\n");
$this->out('');
$this->out(__d('cake_dev', '%s modified', APP . 'Config' . DS . 'bootstrap.php'));
$this->out(__d('cake_dev', '%s modified', $this->bootstrap));
}
}

Expand Down

0 comments on commit 3c824b5

Please sign in to comment.