- show lock in Folder list of document is locked

This commit is contained in:
steinm 2011-04-08 20:43:35 +00:00
parent 5051bb80dc
commit dcd17cfddb
2 changed files with 5 additions and 1 deletions

BIN
out/images/lock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 732 B

View File

@ -126,7 +126,11 @@ foreach($documents as $document) {
print "<td><a href=\"out.ViewDocument.php?documentid=".$docID."&showtree=".$showtree."\">" . $document->getName() . "</a></td>\n";
print "<td>".$owner->getFullName()."</td>";
print "<td>".getOverallStatusText($status["status"])."</td>";
print "<td>";
if ( $document->isLocked() ) {
print "<img src=\"".UI::getImgPath("lock.png")."\" title=\"". getMLText("locked_by").": ".$document->getLockingUser()->getFullName()."\"> ";
}
print getOverallStatusText($status["status"])."</td>";
print "<td>".$version."</td>";
print "<td>".$comment."</td>";
print "</tr>\n";