hey guys,
I've done a quick fix for the double digit problem.
1. open the quickban_button template
2. search for OR $bbuserinfo[usergroupid]== $vboptions['ugroups_can']{6} between the <!-- ALLOWED USERGROUPS --> box
3. add your usergroup like this: OR $bbuserinfo[usergroupid]== 123, replace 123 with your usergroup id
example:
Code:
<!-- ALLOWED USERGROUPS -->
<if condition="$bbuserinfo[usergroupid]== $vboptions['ugroups_can']{0} OR $bbuserinfo[usergroupid]== $vboptions['ugroups_can']{2} OR $bbuserinfo[usergroupid]== $vboptions['ugroups_can']{4} OR $bbuserinfo[usergroupid]== $vboptions['ugroups_can']{6} OR $bbuserinfo[usergroupid]== 123">
<!-- END ALLOWED USERGROUPS -->
I don't like to hardcode id's into templates, but I haven't enough time to make a proper fix for such a little problem.
enjoy.