Quote:
Originally Posted by eMike
Upgraded to 0.9 and still missing the posticon image in the ticket list.
Is there any file / template I can edit to remove it completely or add a permanent default posticon?
|
support_ticketlistbit
look for
HTML Code:
<if condition="$show['messageicon']">
<td class="alt1"><img src="$ticket[iconpath]" alt="$ticket[icontitle]" border="0" /></td>
</if>
replace with
HTML Code:
<if condition="$show['messageicon']">
<td class="alt1">
<if condition="$ticket[iconpath]"><img src="$ticket[iconpath]" alt="$ticket[icontitle]" border="0" /></if>
</td>
</if>