Commit c6b0deae21eeae5f8b45e7a87dcc39ac76f51a1d

Authored by conradverm
1 parent 1b8c7177

KTC-17

"Quick links page faulty"
Fixed. Someone commented out the return for the TitleColumn.RenderData on which QuickLinksColumn is based.

Reviewed By: Kevin Fourie

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6353 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/browse/BrowseColumns.inc.php
... ... @@ -142,7 +142,7 @@ class TitleColumn extends BrowseColumn {
142 142 $outStr .= ' (' . $this->prettySize($aDataRow['document']->getSize()) . ')';
143 143 $outStr .= '</span>';
144 144 }
145   - //return $outStr;
  145 + return $outStr;
146 146 }
147 147  
148 148 function prettySize($size) {
... ...