[9.1.11] petite correction dans le code du sitemap

This commit is contained in:
fredtempez 2019-06-16 17:54:41 +02:00
parent ba2151cc24
commit cca61d7b8a
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class common {
const TEMP_DIR = 'site/tmp/';
// Numéro de version
const ZWII_VERSION = '9.1.10';
const ZWII_VERSION = '9.1.11';
public static $actions = [];
public static $coreModuleIds = [
@ -680,7 +680,7 @@ class common {
foreach($this->getData(['module',$childKey]) as $articleId => $article) {
if($this->getData(['module',$childKey,$articleId,'state']) === true) {
$date = $this->getData(['module',$childKey,$articleId,'publishedOn']);
$sitemap->addUrl( $childKey . '/' . $articleId , new DateTime("@{$date}"),new DateTimeZone($timezone)) ;
$sitemap->addUrl( $childKey . '/' . $articleId , new DateTime("@{$date}",new DateTimeZone($timezone)));
}
}
}