Added the require to dispatcher in skel to cake bake.

This commit is contained in:
Juan Basso 2010-10-30 01:29:26 -02:00
parent 2d9d4547f4
commit 5674ac4cf8

View file

@ -79,6 +79,7 @@
if (isset($_GET['url']) && $_GET['url'] === 'favicon.ico') { if (isset($_GET['url']) && $_GET['url'] === 'favicon.ico') {
return; return;
} else { } else {
require CAKE . 'dispatcher.php';
$Dispatcher = new Dispatcher(); $Dispatcher = new Dispatcher();
$Dispatcher->dispatch(); $Dispatcher->dispatch();
} }