Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor comment and path changes. #132

Merged
merged 1 commit into from Jul 2, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/ConsoleShell.php
Expand Up @@ -330,7 +330,7 @@ protected function _isValidModel($modelToCheck) {
} }


/** /**
* Reloads the routes configuration from config/routes.php, and compiles * Reloads the routes configuration from app/Config/routes.php, and compiles
* all routes found * all routes found
* *
* @return boolean True if config reload was a success, otherwise false * @return boolean True if config reload was a success, otherwise false
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/default/views/home.ctp
Expand Up @@ -46,7 +46,7 @@ endif;
echo '<span class=\"notice\">'; echo '<span class=\"notice\">';
echo __d('cake_dev', 'Your database configuration file is NOT present.'); echo __d('cake_dev', 'Your database configuration file is NOT present.');
echo '<br/>'; echo '<br/>';
echo __d('cake_dev', 'Rename Config/database.php.default to Config/database.php'); echo __d('cake_dev', 'Rename APP/Config/database.php.default to APP/Config/database.php');
echo '</span>'; echo '</span>';
endif; endif;
?> ?>
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Routing/Router.php
Expand Up @@ -473,7 +473,7 @@ public static function prefixes() {
} }


/** /**
* Parses given URL string. Returns 'routing' parametets for that url. * Parses given URL string. Returns 'routing' parameters for that url.
* *
* @param string $url URL to be parsed * @param string $url URL to be parsed
* @return array Parsed elements from URL * @return array Parsed elements from URL
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/View/Pages/home.ctp
Expand Up @@ -71,7 +71,7 @@ endif;
echo '<span class="notice">'; echo '<span class="notice">';
echo __d('cake_dev', 'Your database configuration file is NOT present.'); echo __d('cake_dev', 'Your database configuration file is NOT present.');
echo '<br/>'; echo '<br/>';
echo __d('cake_dev', 'Rename Config/database.php.default to Config/database.php'); echo __d('cake_dev', 'Rename APP/Config/database.php.default to APP/Config/database.php');
echo '</span>'; echo '</span>';
endif; endif;
?> ?>
Expand Down