include complete day of end date

This commit is contained in:
Uwe Steinmann 2024-03-28 18:30:02 +01:00
parent 84ff9e48fe
commit 1abf8802dc

View File

@ -106,7 +106,7 @@ class SeedDMS_View_ExpiredDocuments extends SeedDMS_Theme_Style {
if($startts)
$d['start'] = $startts;
if($endts)
$d['end'] = $endts;
$d['end'] = $endts+86400;
$docs = $dms->getDocumentsExpired($d, null, $orderby, $orderdir, true);
$this->contentHeading(getReadableDate($startts)." - ".getReadableDate($endts));
}