Skip to content

Commit

Permalink
Adding F as an option to bake menu.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 12, 2009
1 parent b53c733 commit 267fcc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/console/libs/bake.php
Expand Up @@ -99,7 +99,7 @@ function main() {
$this->out('[F]ixture');
$this->out('[Q]uit');

$classToBake = strtoupper($this->in(__('What would you like to Bake?', true), array('D', 'M', 'V', 'C', 'P', 'Q')));
$classToBake = strtoupper($this->in(__('What would you like to Bake?', true), array('D', 'M', 'V', 'C', 'P', 'F', 'Q')));
switch ($classToBake) {
case 'D':
$this->DbConfig->execute();
Expand All @@ -123,7 +123,7 @@ function main() {
exit(0);
break;
default:
$this->out(__('You have made an invalid selection. Please choose a type of class to Bake by entering D, M, V, or C.', true));
$this->out(__('You have made an invalid selection. Please choose a type of class to Bake by entering D, M, V, F, or C.', true));
}
$this->hr();
$this->main();
Expand Down

0 comments on commit 267fcc1

Please sign in to comment.