From 661a0cca2317c66e7e560f107e5afc6d1fd5fb01 Mon Sep 17 00:00:00 2001 From: Ceeram Date: Sun, 22 May 2011 23:29:17 +0200 Subject: [PATCH] removing DS, App::core('Console') already ends with DS --- lib/Cake/Console/Command/Task/ProjectTask.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Console/Command/Task/ProjectTask.php b/lib/Cake/Console/Command/Task/ProjectTask.php index b5bb2f3f2..3949a2392 100644 --- a/lib/Cake/Console/Command/Task/ProjectTask.php +++ b/lib/Cake/Console/Command/Task/ProjectTask.php @@ -388,7 +388,7 @@ class ProjectTask extends Shell { ))->addOption('empty', array( 'help' => __d('cake_console', 'Create empty files in each of the directories. Good if you are using git') ))->addOption('skel', array( - 'default' => current(App::core('Console')) . DS . 'templates' . DS . 'skel', + 'default' => current(App::core('Console')) . 'templates' . DS . 'skel', 'help' => __d('cake_console', 'The directory layout to use for the new application skeleton. Defaults to cake/console/templates/skel of CakePHP used to create the project.') )); }