diff --git a/CHANGELOG b/CHANGELOG index f325dfccc..a749b1907 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +-------------------------------------------------------------------------------- + Changes in version 5.0.5 +-------------------------------------------------------------------------------- +- merged changes from 4.3.28 + -------------------------------------------------------------------------------- Changes in version 5.0.4 -------------------------------------------------------------------------------- @@ -31,6 +36,11 @@ - add .xml to online file types by default - add home folder for users +-------------------------------------------------------------------------------- + Changes in version 4.3.28 +-------------------------------------------------------------------------------- +- add expiration in list of documents + -------------------------------------------------------------------------------- Changes in version 4.3.27 -------------------------------------------------------------------------------- diff --git a/SeedDMS_Core/Core/inc.ClassGroup.php b/SeedDMS_Core/Core/inc.ClassGroup.php index 985db836d..b618e17e9 100644 --- a/SeedDMS_Core/Core/inc.ClassGroup.php +++ b/SeedDMS_Core/Core/inc.ClassGroup.php @@ -21,7 +21,7 @@ * @copyright Copyright (C) 2002-2005 Markus Westphal, 2006-2008 Malcolm Cowe, 2010 Uwe Steinmann * @version Release: @package_version@ */ -class SeedDMS_Core_Group { +class SeedDMS_Core_Group { /* {{{ */ /** * The id of the user group * @@ -437,5 +437,5 @@ class SeedDMS_Core_Group { return $notifications; } /* }}} */ -} +} /* }}} */ ?> diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index 267f4b5d9..4f6a5d116 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -1818,7 +1818,7 @@ $(document).ready( function() { $content .= ""; $content .= "" . htmlspecialchars($document->getName()) . ""; - $content .= "
".getMLText('owner').": ".htmlspecialchars($owner->getFullName()).", ".getMLText('creation_date').": ".date('Y-m-d', $document->getDate()).", ".getMLText('version')." ".$version." - ".date('Y-m-d', $latestContent->getDate()).""; + $content .= "
".getMLText('owner').": ".htmlspecialchars($owner->getFullName()).", ".getMLText('creation_date').": ".date('Y-m-d', $document->getDate()).", ".getMLText('version')." ".$version." - ".date('Y-m-d', $latestContent->getDate())."".($document->expires() ? ", ".getMLText('expires').": ".getReadableDate($document->getExpires())."" : "").""; if($comment) { $content .= "
".htmlspecialchars($comment).""; }