Quote:
Originally Posted by sv1cec
I think I found one more little thing. In the threadbit template, your instructions (at least for those upgrading from 1.1.0) ask us to enter:
HTML Code:
<if condition="can_moderate($thread['forumid'])">
<td class="alt1" align="center"><if condition="$show['threadmoved']">-<else /><input type="checkbox" id="inlinemod_$thread[threadid]" name="inlinemod_$thread[threadid]" value="1" onclick="select_item($thread[threadid], this);" /></if>
</if>
I think this should be:
HTML Code:
<if condition="(can_moderate($thread['forumid']) AND $show['inlinemod'])">
<td class="alt1" align="center"><if condition="$show['threadmoved']">-<else /><input type="checkbox" id="inlinemod_$thread[threadid]" name="inlinemod_$thread[threadid]" value="1" onclick="select_item($thread[threadid], this);" /></if>
</if>
or else the checkboxes will appear in the search results.
Rgds
|
Thanks. It was hard to remember what I changed and what I didn't as there's no easy way to diff between templates.