Skip to content

Commit

Permalink
Fixing more paths in skel directory for project generation
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Apr 19, 2011
1 parent 2542253 commit 147b04a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Console/templates/skel/Console/cake.php
Expand Up @@ -19,6 +19,6 @@
* @since CakePHP(tm) v 1.2.0.5012
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
require_once(__CAKE_PATH__ . 'shell_dispatcher.php');
require_once(__CAKE_PATH__ . 'ShellDispatcher.php');

return ShellDispatcher::run($argv);
2 changes: 1 addition & 1 deletion lib/Cake/Console/templates/skel/webroot/index.php
Expand Up @@ -75,6 +75,6 @@
return;
}

require LIBS . 'Routing' . DS .'Dispatcher.php';
App::uses('Dispatcher', 'Dispatcher');

This comment has been minimized.

Copy link
@lipedjow

lipedjow Apr 20, 2011

Hi,

lib/Cake/Console/templates/skel/webroot/index.php:78
App::uses('Dispatcher', 'Dispatcher');

Shouldn't be? (as in cakephp/app/webroot/index.php)
App::uses('Dispatcher', 'Routing');

LipeDjow

This comment has been minimized.

Copy link
@lorenzo

lorenzo Apr 20, 2011

Author Member

Hey! nice catch... I should pay more attention to what I commit :)

This comment has been minimized.

Copy link
@lipedjow

lipedjow Apr 20, 2011

Relax dude.. it happens. =)
You (and others of dev team) do a great job!

LipeDjow

$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(new CakeRequest());

1 comment on commit 147b04a

@lipedjow
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,

lib/Cake/Console/templates/skel/webroot/index.php:78
App::uses('Dispatcher', 'Dispatcher');

Shouldn't be? (as in cakephp/app/webroot/index.php)
App::uses('Dispatcher', 'Routing');

LipeDjow

Please sign in to comment.