Removing remaining references to $_GET['url'].

This commit is contained in:
mark_story 2011-02-19 22:27:38 -05:00
parent ea52f880fd
commit 24935afff4
2 changed files with 2 additions and 2 deletions

View file

@ -75,5 +75,5 @@
} else {
require LIBS . 'dispatcher.php';
$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(new CakeRequest(isset($_GET['url']) ? $_GET['url'] : null));
$Dispatcher->dispatch(new CakeRequest());
}

View file

@ -75,5 +75,5 @@
} else {
require LIBS . 'dispatcher.php';
$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(new CakeRequest(isset($_GET['url']) ? $_GET['url'] : null));
$Dispatcher->dispatch(new CakeRequest());
}