diff --git a/views/bootstrap/class.ManageNotify.php b/views/bootstrap/class.ManageNotify.php
index eec80f047..e83c9d85c 100644
--- a/views/bootstrap/class.ManageNotify.php
+++ b/views/bootstrap/class.ManageNotify.php
@@ -130,7 +130,8 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Bootstrap_Style {
print "";
print "
" . htmlspecialchars($doc->getName()) . "";
- print " ".getMLText('owner').": ".htmlspecialchars($owner->getFullName()).", ".getMLText('creation_date').": ".date('Y-m-d', $doc->getDate()).", ".getMLText('version')." ".$version." - ".date('Y-m-d', $latest->getDate())."";
+ print " ".getMLText('owner').": ".htmlspecialchars($owner->getFullName()).", ".getMLText('creation_date').": ".date('Y-m-d', $doc->getDate()).", ".getMLText('version')." ".$latest->getVersion()." - ".date('Y-m-d', $latest->getDate())."";
+ $comment = $latest->getComment();
if($comment) {
print " ".htmlspecialchars($comment)."";
}
|