mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
parent
f7e98e7427
commit
c622a9dfc2
1 changed files with 5 additions and 1 deletions
|
@ -536,7 +536,11 @@ class CakeRoute {
|
|||
$out = str_replace($search, $replace, $out);
|
||||
}
|
||||
|
||||
if (strpos($this->template, '*')) {
|
||||
if (strpos($this->template, '**')) {
|
||||
$out = str_replace('**', $params['pass'], $out);
|
||||
$out = str_replace('%2F', '/', $out);
|
||||
}
|
||||
elseif (strpos($this->template, '*')) {
|
||||
$out = str_replace('*', $params['pass'], $out);
|
||||
}
|
||||
$out = str_replace('//', '/', $out);
|
||||
|
|
Loading…
Reference in a new issue