hey Michelle, could you help me set up away for this to work on a different forum ID. eg. I am using this and love it! but would now like to auto solve threads in this other forum section and have them auto move to another forum. What would be the correct code to use to make that work?
Would this be correct?
Quote:
<!-- auto-solve report threads -->
<if condition="can_moderate() AND $forumid==$vboptions['rpforumid']">
<form method="post" action="postings.php?do=domovethread&t=$threadid">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="t" value="$threadid" />
<input type="hidden" name="do" value="domovethread" />
<input type="hidden" name="title" value="[solved by $bbuserinfo[username]] $threadinfo[title]" />
<input type="hidden" name="destforumid" value="443" />
<input type="hidden" name="redirect" value="none" />
<input type="submit" value="Report Solved">
</form>
</if>
<!-- / auto-solve Multiple account threads -->
<!-- auto-solve report threads -->
<if condition="can_moderate() AND $forumid==375">
<form method="post" action="postings.php?do=domovethread&t=$threadid">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="t" value="$threadid" />
<input type="hidden" name="do" value="domovethread" />
<input type="hidden" name="title" value="[solved by $bbuserinfo[username]] $threadinfo[title]" />
<input type="hidden" name="destforumid" value="500" />
<input type="hidden" name="redirect" value="none" />
<input type="submit" value="Report Solved">
</form>
</if>
<!-- / auto-solve Multiple account threads -->
|
Would this be correct?