mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-30 04:31:19 +00:00
minor formating change
This commit is contained in:
parent
e10b7ff3e3
commit
59e92a836f
|
|
@ -1375,7 +1375,8 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
||||||
print "<td><ul class=\"unstyled\"><li>".getLongReadableDate($r["date"])."</li>";
|
print "<td><ul class=\"unstyled\"><li>".getLongReadableDate($r["date"])."</li>";
|
||||||
/* $updateUser is the user who has done the receipt */
|
/* $updateUser is the user who has done the receipt */
|
||||||
$updateUser = $dms->getUser($r["userID"]);
|
$updateUser = $dms->getUser($r["userID"]);
|
||||||
print "<li>".(is_object($updateUser) ? htmlspecialchars($updateUser->getFullName()." (".$updateUser->getLogin().")") : "unknown user id '".$r["userID"]."'")."</li></ul></td>";
|
print "<li>".(is_object($updateUser) ? htmlspecialchars($updateUser->getFullName()." (".$updateUser->getLogin().")") : "unknown user id '".$r["userID"]."'")."</li>";
|
||||||
|
print "</ul></td>";
|
||||||
print "<td>".htmlspecialchars($r["comment"])."</td>\n";
|
print "<td>".htmlspecialchars($r["comment"])."</td>\n";
|
||||||
print "<td>";
|
print "<td>";
|
||||||
if($class)
|
if($class)
|
||||||
|
|
@ -1505,6 +1506,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
||||||
print "<td>".$reqName."</td>\n";
|
print "<td>".$reqName."</td>\n";
|
||||||
print "<td><ul class=\"unstyled\"><li>".getLongReadableDate($r["date"])."</li>";
|
print "<td><ul class=\"unstyled\"><li>".getLongReadableDate($r["date"])."</li>";
|
||||||
/* $updateUser is the user who has done the revision */
|
/* $updateUser is the user who has done the revision */
|
||||||
|
$updateUser = null;
|
||||||
if($r['status'] != 0) {
|
if($r['status'] != 0) {
|
||||||
$updateUser = $dms->getUser($r["userID"]);
|
$updateUser = $dms->getUser($r["userID"]);
|
||||||
print "<li>".(is_object($updateUser) ? htmlspecialchars($updateUser->getFullName()." (".$updateUser->getLogin().")") : "unknown user id '".$r["userID"]."'")."</li>";
|
print "<li>".(is_object($updateUser) ? htmlspecialchars($updateUser->getFullName()." (".$updateUser->getLogin().")") : "unknown user id '".$r["userID"]."'")."</li>";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user