mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Removing remaining references to $_GET['url'].
This commit is contained in:
parent
ea52f880fd
commit
24935afff4
2 changed files with 2 additions and 2 deletions
|
@ -75,5 +75,5 @@
|
||||||
} else {
|
} else {
|
||||||
require LIBS . 'dispatcher.php';
|
require LIBS . 'dispatcher.php';
|
||||||
$Dispatcher = new Dispatcher();
|
$Dispatcher = new Dispatcher();
|
||||||
$Dispatcher->dispatch(new CakeRequest(isset($_GET['url']) ? $_GET['url'] : null));
|
$Dispatcher->dispatch(new CakeRequest());
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,5 +75,5 @@
|
||||||
} else {
|
} else {
|
||||||
require LIBS . 'dispatcher.php';
|
require LIBS . 'dispatcher.php';
|
||||||
$Dispatcher = new Dispatcher();
|
$Dispatcher = new Dispatcher();
|
||||||
$Dispatcher->dispatch(new CakeRequest(isset($_GET['url']) ? $_GET['url'] : null));
|
$Dispatcher->dispatch(new CakeRequest());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue