From 0ae88d62341ad54d7a4a57f4e84b1c00f5e1c492 Mon Sep 17 00:00:00 2001 From: dho Date: Mon, 19 Mar 2007 07:01:13 +0000 Subject: [PATCH] Applying patch of ticket #2263 git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4633 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/scripts/bake2.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/scripts/bake2.php b/cake/scripts/bake2.php index 78fb39406..edec453fb 100644 --- a/cake/scripts/bake2.php +++ b/cake/scripts/bake2.php @@ -73,14 +73,14 @@ define('APP_DIR', $appdir); define('APP_PATH', ROOT.DS.APP_DIR.DS); // TODO: how to handle situation with a non-standard webroot setup? - define('WWW_ROOT', APP_PATH.DS.'webroot'.DS); + define('WWW_ROOT', APP_PATH.'webroot'.DS); } function defineAppConstantsWithDefaultValues() { define('ROOT', CORE_PATH); define('APP_DIR', 'app'); define('APP_PATH', ROOT.DS.APP_DIR.DS); - define('WWW_ROOT', APP_PATH.DS.'webroot'.DS); + define('WWW_ROOT', APP_PATH.'webroot'.DS); } function defineConstants() {