When trying to apply the showthread_similarthreadbit changes I'm getting the following error ..
Quote:
The following error occurred when attempting to evaluate this template:
Parse error: syntax error, unexpected '"', expecting ']' in /home/techn/public_html/tal/forum/includes/adminfunctions_template.php(3596) : eval()'d code on line 3
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
|
The code to remove is
Code:
<td class="alt1" align="$stylevar[left]"><if condition="$simthread['issubscribed']"><img class="inlineimg" src="$stylevar[imgdir_misc]/subscribed.gif" alt="" title="$vbphrase[you_are_subscribed_to_this_thread]" /> </if><span class="smallfont"><a href="showthread.php?$session[sessionurl]t=$simthread[threadid]" title="$simthread[preview]">$simthread[title]</a></span></td>
The code to add is
Code:
<td class="alt1" align="$stylevar[left]"><if condition="$simthread['issubscribed']"><img class="inlineimg" src="$stylevar[imgdir_misc]/subscribed.gif" alt="" title="$vbphrase[you_are_subscribed_to_this_thread]" /> </if><span class="smallfont"><a href="<if condition="$show['zointsurl']">$simthread[zointsurl<else />showthread.php?$session[sessionurl]t=$simthread[threadid]</if>" title="$simthread[preview]">$simthread[title]</a></span></td>
I'm running 3.6.8 PL2
Any ideas?