Commit 99e9791f59696041409c4fc8826fab9700f2d9c9

Authored by michael
1 parent fb388d03

display the star for documents with no mime type


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@806 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc
... ... @@ -22,7 +22,7 @@ function displayDocumentLink($oDocument, $bDisplayFullPath = false) {
22 22 global $default;
23 23  
24 24 $sIconUrl = $oDocument->getMimeTypeIconUrl();
25   - $sIconPath = ($sIconUrl ? generateImage($sIconUrl) : "");
  25 + $sIconPath = ($sIconUrl ? generateImage($sIconUrl) : generateImage("$default->owl_graphics_url/star.gif"));
26 26  
27 27 $sLinkText = $oDocument->getName();
28 28 if ($bDisplayFullPath) {
... ...