wwarning suppression de page sans contenu
This commit is contained in:
parent
2a8a303de1
commit
c0110c7c22
@ -360,7 +360,9 @@ class page extends common {
|
|||||||
// Supprime l'ancienne page si l'id a changée
|
// Supprime l'ancienne page si l'id a changée
|
||||||
if($pageId !== $this->getUrl(2)) {
|
if($pageId !== $this->getUrl(2)) {
|
||||||
$this->deleteData(['page', $this->getUrl(2)]);
|
$this->deleteData(['page', $this->getUrl(2)]);
|
||||||
unlink (self::DATA_DIR . self::$i18n . '/content/' . $this->getUrl(2) . '.html');
|
if (file_exists(self::DATA_DIR . self::$i18n . '/content/' . $this->getUrl(2) . '.html')) {
|
||||||
|
unlink (self::DATA_DIR . self::$i18n . '/content/' . $this->getUrl(2) . '.html');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Traitement des pages spéciales affectées dans la config :
|
// Traitement des pages spéciales affectées dans la config :
|
||||||
if ($this->getUrl(2) === $this->getData(['locale', 'legalPageId']) ) {
|
if ($this->getUrl(2) === $this->getData(['locale', 'legalPageId']) ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user