diff --git a/core/core.php b/core/core.php index 558f14fc..f349649c 100644 --- a/core/core.php +++ b/core/core.php @@ -34,7 +34,7 @@ class common { const TEMP_DIR = 'site/tmp/'; // Numéro de version - const ZWII_VERSION = '10.0.008.dev'; + const ZWII_VERSION = '10.0.009.dev'; public static $actions = []; public static $coreModuleIds = [ diff --git a/core/module/config/config.php b/core/module/config/config.php index 869b46e2..28555616 100755 --- a/core/module/config/config.php +++ b/core/module/config/config.php @@ -375,6 +375,7 @@ class config extends common { [ 'analyticsId' => $this->getInput('configAnalyticsId'), 'autoBackup' => $this->getInput('configAutoBackup', helper::FILTER_BOOLEAN), + 'homePageId' => $this->getInput('configHomePageId', helper::FILTER_ID, true), 'maintenance' => $this->getInput('configMaintenance', helper::FILTER_BOOLEAN), 'cookieConsent' => $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN), 'favicon' => $this->getInput('configFavicon'), @@ -393,7 +394,7 @@ class config extends common { 'metaDescription' => $this->getInput('configMetaDescription', helper::FILTER_STRING_LONG, true), 'title' => $this->getInput('configTitle', helper::FILTER_STRING_SHORT, true), 'googTransLogo' => $this->getInput('configdGoogTransLogo', helper::FILTER_BOOLEAN), - 'autoUpdate' => $this->getInput('configAutoUpdate', helper::FILTER_BOOLEAN) + 'autoUpdate' => $this->getInput('configAutoUpdate', helper::FILTER_BOOLEAN), ] ]);