diff --git a/views/bootstrap/class.ViewDocument.php b/views/bootstrap/class.ViewDocument.php index 569003670..64cde8f49 100644 --- a/views/bootstrap/class.ViewDocument.php +++ b/views/bootstrap/class.ViewDocument.php @@ -113,6 +113,14 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Theme_Style { } } } + $arrarr = $this->callHook('additionalDocumentContentInfo', $version); + if(is_array($arrarr)) { + foreach($arrarr as $arr) { + print "
  • ".$arr[0].": ".$arr[1]."
  • \n"; + } + } elseif(is_string($arrarr)) { + echo $arrarr; + } } /* }}} */ function documentListItem() { /* {{{ */