mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
parent
e6c6e0bf2c
commit
f7e98e7427
2 changed files with 1 additions and 5 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);
|
||||
|
|
|
@ -334,7 +334,6 @@ class HtmlHelper extends AppHelper {
|
|||
$escapeTitle = true;
|
||||
if ($url !== null) {
|
||||
$url = $this->url($url);
|
||||
$url = str_replace('%2F', '/', $url);
|
||||
} else {
|
||||
$url = $this->url($title);
|
||||
$title = htmlspecialchars_decode($url, ENT_QUOTES);
|
||||
|
|
Loading…
Reference in a new issue