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