I need this Addon for my forum, and it stop working when I upgrade to VBB 3.7.3 PL1. This is the modification to the original plugin to make it works again:
Find in product-tdebates.xml:
Code:
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="t" value="$threadid" />
<input type="hidden" name="do" value="dotdebates" />
Replace with:
Code:
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="t" value="$threadid" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="dotdebates" />
Hope this help!