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