mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-11 16:35:38 +00:00
show parent of document in list of linked documents
This commit is contained in:
parent
996163f72f
commit
4e91604d44
|
@ -1605,7 +1605,9 @@ $(document).ready( function() {
|
|||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->documentListRow($targetDoc, $previewer, true);
|
||||
$extracontent = array();
|
||||
$extracontent['below_title'] = $this->getListRowPath($targetDoc);
|
||||
echo $this->documentListRow($targetDoc, $previewer, true, 0, $extracontent);
|
||||
}
|
||||
print "<td><span class=\"actions\">";
|
||||
print getMLText("document_link_by")." ".htmlspecialchars($responsibleUser->getFullName());
|
||||
|
@ -1671,7 +1673,9 @@ $(document).ready( function() {
|
|||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->documentListRow($sourceDoc, $previewer, true);
|
||||
$extracontent = array();
|
||||
$extracontent['below_title'] = $this->getListRowPath($sourceDoc);
|
||||
echo $this->documentListRow($sourceDoc, $previewer, true, 0, $extracontent);
|
||||
}
|
||||
print "<td><span class=\"actions\">";
|
||||
if (($user->getID() == $responsibleUser->getID()) || ($document->getAccessMode($user) == M_ALL ))
|
||||
|
|
Loading…
Reference in New Issue
Block a user