Commit 850d9a8bb415b7b902946fabe18eb614b182ad27

Authored by kevin_fourie
1 parent 325335a8

KTS-2302

"Download column missing border in IE"
Fixed. Added &nbsp 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/trunk@7116 c91229c3-7414-0410-bfa2-8a42b809f60b
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") {
... ...