mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-11 22:32:14 +00:00
[BUGFIX] Fixed getParams not being passed when using getRoute on current
route.
This commit is contained in:
@@ -281,7 +281,7 @@ class RouterBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if($controller === null && $parameters === null && $this->loadedRoute !== null) {
|
if($controller === null && $parameters === null && $this->loadedRoute !== null) {
|
||||||
return $this->processUrl($this->loadedRoute, null, $getParams);
|
return $this->processUrl($this->loadedRoute, null, null, $getParams);
|
||||||
}
|
}
|
||||||
|
|
||||||
$c = '';
|
$c = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user