Commit bafe95bf83035eb1317901cc0a64cc34a2236426
1 parent
2e34a678
Merged in from DEV trunk...
KTS-2302 "Download column missing border in IE" Fixed. Added   as per patch. Thanks Kenny! Committed By: Kevin Fourie Reviewed By: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/trunk@7117 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
4 additions
and
0 deletions
plugins/ktcore/KTColumns.inc.php
| ... | ... | @@ -420,6 +420,10 @@ class AdvancedDownloadColumn extends AdvancedColumn { |
| 420 | 420 | $this->label = null; |
| 421 | 421 | } |
| 422 | 422 | |
| 423 | + function renderHeader($sReturnURL) { | |
| 424 | + return ' '; | |
| 425 | + } | |
| 426 | + | |
| 423 | 427 | function renderData($aDataRow) { |
| 424 | 428 | // only _ever_ show this for documents. |
| 425 | 429 | if ($aDataRow["type"] === "folder") { | ... | ... |