ringleader, Just a heads up that this is in fact affected by the new Security Token on 3.6.10 and 3.7.0 RC4 ... Its a really easy fix though (see below) ...
In the vbCoupons_couponbit template FIND:
Code:
<form action="payments.php?do=addcoupon" method="post">
BELOW that line add:
Code:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
In the same template (vbCoupons_couponbit) FIND:
Code:
<form action="payments.php?do=deletecoupon" method="post">
BELOW that line add:
Code:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
That's it! I did that and now its working like a charm again. So for those who need this Quick Fix until the New Version is released, there it is ...