Fixes #3327, wrong paths in home.ctp after baking a project

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5727 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-10-06 05:01:50 +00:00
parent da1d437aee
commit 03c0f26ec0

View file

@ -85,8 +85,8 @@ if (!empty(\$filePresent)):
$output .= "<?php endif;?>\n";
$output .= "<h3>Editing this Page</h3>\n";
$output .= "<p>\n";
$output .= "To change the content of this page, edit: ".VIEWS."pages".DS."home.ctp.<br />\n";
$output .= "To change its layout, edit: ".VIEWS."layouts".DS."default.ctp.<br />\n";
$output .= "To change the content of this page, edit: ".$dir."pages".DS."home.ctp.<br />\n";
$output .= "To change its layout, edit: ".$dir."layouts".DS."default.ctp.<br />\n";
$output .= "You can also add some CSS styles for your pages at: ".$dir."webroot".DS."css.\n";
$output .= "</p>\n";
?>