Commit 070b6ffd47b1c0bb6be84ce2a05c3e1805926928
1 parent
c51988ed
Fixed alignment error
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1341 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
3 additions
and
3 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc
| ... | ... | @@ -232,16 +232,16 @@ function getViewPage($oDocument) { |
| 232 | 232 | $sToRender .= "\t<table border = 0, width = 230>\n"; |
| 233 | 233 | $sToRender .= "\t<tr>\n"; |
| 234 | 234 | $sToRender .= "\t\t<td>" . wrapInTable(renderNonEditableDocumentRouting($oDocument)) . "</td>\n"; |
| 235 | - //$sToRender .= "\t\t<td>" . renderDocumentRouting($oDocument) . "</td>\n"; | |
| 235 | + //$sToRender .= "\t\t<td>" . renderDocumentRouting($oDocument) . "</td>\n"; | |
| 236 | + $sToRender .= "\t</tr>"; | |
| 236 | 237 | if (Document::userIsPerformingCurrentCollaborationStep($oDocument->getID())) { |
| 237 | 238 | //if the current user is responsible for an active step in the collaboration process |
| 238 | - $sToRender .= "\t\t<td><table border=\"0\"><tr>\n"; | |
| 239 | + $sToRender .= "\t\t<tr><td><table border=\"0\"><tr>\n"; | |
| 239 | 240 | $sToRender .= "\t\t<td><b>You currently have an active role<br> in the collaboration process</b></td>\n"; |
| 240 | 241 | $sToRender .= "\t\t<td align=\"center\"><a href=" . $_SERVER['PHP_SELF'] . "?fDocumentID=" . $oDocument->getID() . "&fCollaborationStepComplete=1><img src=\"$default->graphicsUrl/widgets/update.gif\" border=\"0\"/></a></td>\n"; |
| 241 | 242 | $sToRender .= "\t\t<td align=\"center\"><a href=\"$default->rootUrl/control.php?action=collaborationStepReject&fDocumentID=$iDocumentID\"><img src=\"$default->graphicsUrl/widgets/reject.gif\" border=\"0\"/></a></td>\n"; |
| 242 | 243 | $sToRender .= "\t\t</tr></table></td>\n"; |
| 243 | 244 | } |
| 244 | - $sToRender .= "\t</tr>"; | |
| 245 | 245 | $sToRender .= "\t</table>"; |
| 246 | 246 | $sToRender .= "</td>\n"; |
| 247 | 247 | $sToRender .= "</tr>\n"; | ... | ... |