Skip to content

Commit

Permalink
Removing closing ?> on bake templates so they match the rest of CakePHP.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jul 1, 2010
1 parent 62e16c7 commit 999a878
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion cake/console/templates/default/classes/controller.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,3 @@ echo $actions;
endif; ?>

}
<?php echo "?>"; ?>
1 change: 0 additions & 1 deletion cake/console/templates/default/classes/fixture.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,3 @@ class <?php echo $model; ?>Fixture extends CakeTestFixture {
public $records = <?php echo $records; ?>;
<?php endif;?>
}
<?php echo '?>'; ?>
3 changes: 1 addition & 2 deletions cake/console/templates/default/classes/model.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,4 @@ if (!empty($associations['hasAndBelongsToMany'])):
echo "\n\t);\n\n";
endif;
?>
}
<?php echo '?>'; ?>
}
1 change: 0 additions & 1 deletion cake/console/templates/default/classes/test.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,3 @@ class <?php echo $fullClassName; ?>TestCase extends CakeTestCase {

<?php endforeach;?>
}
<?php echo '?>'; ?>

0 comments on commit 999a878

Please sign in to comment.