forked from ZwiiCMS-Team/ZwiiCMS
[9.0.16] pageId fix
This commit is contained in:
parent
70b0388852
commit
b74c86dfcd
@ -1442,6 +1442,10 @@ class helper {
|
||||
$text
|
||||
));
|
||||
$text = preg_replace('/([^a-z0-9-])/', '', $text);
|
||||
// Cas où un identifiant est vide
|
||||
if (empty($text)) {
|
||||
$text = uniqid('page-');
|
||||
}
|
||||
// Un ID ne peut pas être un entier, pour éviter les conflits avec le système de pagination
|
||||
if(intval($text) !== 0) {
|
||||
$text = 'i' . $text;
|
||||
@ -2866,4 +2870,4 @@ class template {
|
||||
// Retourne le html
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user