mirror of
https://git.code.sf.net/p/seeddms/code
synced 2026-05-08 13:31:24 +00:00
show folder path for each document in transmittal
This commit is contained in:
parent
f69b8f2b3a
commit
cf3bc98dd5
|
|
@ -3,6 +3,7 @@
|
|||
--------------------------------------------------------------------------------
|
||||
- merge changes up to 5.1.46
|
||||
- qrcode creation no longer needs imagick extension
|
||||
- show folder path for each document in transmittal
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 6.0.38
|
||||
|
|
|
|||
|
|
@ -197,7 +197,14 @@ $(document).ready( function() {
|
|||
if ($document->getAccessMode($user) >= M_READ) {
|
||||
// echo "<tr id=\"table-row-transmittalitem-".$item->getID()."\">";
|
||||
echo $this->documentListRowStart($document);
|
||||
echo $this->documentListRow($document, $previewer, true, $content->getVersion());
|
||||
$extracontent = array();
|
||||
$extracontent['below_title'] = $this->getListRowPath($document);
|
||||
$txt = $this->callHook('documentListItem', $document, $previewer, true, 'transmittal', $extracontent);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->documentListRow($document, $previewer, true, $content->getVersion(), $extracontent);
|
||||
}
|
||||
echo "<td><div class=\"list-action\">";
|
||||
$this->printDeleteItemButton($item, getMLText('transmittalitem_removed'));
|
||||
if($latestcontent->getVersion() != $content->getVersion())
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user