After finding a thread on how to modify the default template to make the thumbnail image and title behave as download link, I have run into a problem with the image as a link.
I have the permissions set so that only registered users can download. When the page is displayed to a registered user, all works as expected.
When the page is rendered to a non-registered user, the following text displays where the thumbnail image ought to be?
/DesktopModules/Repository/MakeThumbnail.aspx?tabid=466&mid=1028
I modified the XML and HTML files as follows:
template.xml
<Object>
<Token>[IMAGE]</Token>
<Settings>
<Setting>
<Name>Width</Name>
<Value>100</Value>
</Setting>
<Setting>
<Name>DOWNLOAD</Name>
<Value>true</Value>
</Setting>
</Settings>
</Object>
and the HTML as follows:
<td width="100" class="normal" align="center" valign="top" style="padding-left: 6px; padding-right: 6px;">
[IMAGE]
</td>
Any thoughts as to how to get the thumbnail to display for non-registered users??