am confused about onething,
I just added new events and noticed that eventhough i allowed registered and moderators ( can bet on events ) . They were still NOT able to
So here is my way of fixing it :
In the edit which you do on showthread.php
$nopermission = 0;
if (!($forumperms & CANBET))
{
$nopermission = 1;
I replaced with
$nopermission = 0;
if (($forumperms & CANBET))
{
$nopermission = 1;
Which means i reversed the canbet perms , which is weird but this way the whole permissions worked exactly as i set them and instead of having a non working code or messed up , i had it working like a charm !
I posted it just incase someone wanted to try doing the same if having same problems with permissions issues.
|