Revert "check id identique à un dossier du site"
This reverts commit d01a717709
.
This commit is contained in:
parent
d01a717709
commit
fb6245fd0a
@ -345,10 +345,6 @@ class helper {
|
||||
if (empty($text)) {
|
||||
$text = uniqid('');
|
||||
}
|
||||
// un dossier existe du même nom (erreur en cas de redirection)
|
||||
if (file_exists($text)) {
|
||||
$text = uniqid($text);
|
||||
}
|
||||
// Un ID ne peut pas être un entier, pour éviter les conflits avec le système de pagination
|
||||
if(intval($text) !== 0) {
|
||||
$text = '_' . $text;
|
||||
|
@ -312,6 +312,10 @@ class page extends common {
|
||||
} else {
|
||||
$pageId = $this->getUrl(2);
|
||||
}
|
||||
// un dossier existe du même nom (erreur en cas de redirection)
|
||||
if (file_exists($pageId)) {
|
||||
$pageId = uniqid($pageId);
|
||||
}
|
||||
// Si l'id a changée
|
||||
if ($pageId !== $this->getUrl(2)) {
|
||||
// Incrémente le nouvel id de la page
|
||||
|
Loading…
Reference in New Issue
Block a user