Commit c06959d6bb1a82eb3a8785e18612861014c06dc6
1 parent
7075b545
(#2763) changed width and removed border
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2529 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewHistoryUI.inc
| ... | ... | @@ -27,7 +27,7 @@ function getDocumentHistory($iDocumentID) { |
| 27 | 27 | "INNER JOIN $default->owl_transaction_types_table AS DTT ON DTT.id = DT.transaction_id " . |
| 28 | 28 | "WHERE DT.document_id = $iDocumentID ORDER BY DT.datetime DESC"; |
| 29 | 29 | $sql = $default->db; |
| 30 | - $sToRender = "<table cellpadding=\"5\" border=\"1\" width=\"90%\">\n"; | |
| 30 | + $sToRender = "<table cellpadding=\"5\" width=\"100%\">\n"; | |
| 31 | 31 | $sToRender .= "<caption align=\"top\" colspan=\"5\" align=\"left\"><b>Transaction History</b></caption>\n"; |
| 32 | 32 | $sql->query($sQuery); |
| 33 | 33 | if ($sql->num_rows() == 0) { | ... | ... |