I am reinstalling the mod because I couldn't get it to work.
I am using the Inline Moderation vers 1.2.1 on vB3.0.7.
I am on the part of adding code to the threadbit in my templates:
Quote:
<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>
|
Each time I try to add it I get this template error:
The following error occurred when attempting to evaluate this template:
Quote:
Parse error: parse error, unexpected '"', expecting ']' in c:\myISP\LPSForum\includes\adminfunctions_template .php(3096) : eval()'d code on line 66
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.
|
This is what the last few lines of code that my template shows:
Quote:
<if condition="$show['forumlink']">
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$thread[forumid]">$thread[forumtitle]</a></td>
</if>
</if>
</if>
</if><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>
</tr>
|
Can someone tell me what I need to change to fix this?