Blog and news add zero seconds

This commit is contained in:
Fred Tempez 2023-02-17 14:30:36 +01:00
parent fb9448cf8e
commit b715329633
2 changed files with 4 additions and 3 deletions

View File

@ -90,7 +90,8 @@
'help' => 'L\'article n\'est visible qu\'après la date de publication prévue.',
'label' => 'Date de publication',
'type' => 'datetime-local',
'value' => time()
'format' => $this->getData(['module', $this->getUrl(0), 'config', 'dateFormat']) . $this->getData(['module', $this->getUrl(0), 'config', 'timeFormat']),
'value' => floor(strtotime('now') / 60) * 60
]); ?>
</div>
<div class="col4">

View File

@ -52,7 +52,7 @@
'help' => 'La news est consultable à partir du moment ou la date de publication est passée.',
'label' => 'Date de publication',
'type' => 'datetime-local',
'value' => time()
'value' => floor(strtotime('now') / 60) * 60
]); ?>
</div>
<div class="col4">
@ -60,7 +60,7 @@
'help' => 'La news est consultable Jusqu\'à cette date si elle est spécifiée. Pour annuler la date de dépublication, sélectionnez une date antérieure à la publication.',
'label' => 'Date de dépublication',
'type' => 'datetime-local',
'value' => $this->getData(['module', $this->getUrl(0),'posts', $this->getUrl(2), 'publishedOff'])
'value' => ''
]); ?>
</div>
</div>