Quote:
Originally Posted by T3MEDIA
Well I installed this for a person and I saw it does not work for secondary groups. Only main.
So your subscription would have to change the main group for this to work.
|
We use subscriptions with only secondary groups as well. I think it's a better overall method (keep primary groups limited, all additional and flucuating perms come from secondary groups). Here's my idea. Someone smack me if I'm stupid...
For example:
Code:
$nzbmaxnewthread = $DB_site->query_first("
SELECT maxnewthread AS number FROM " . TABLE_PREFIX . "usergroup
WHERE usergroupid=$bbuserinfo[usergroupid]
");
Becomes
Code:
$nzbmaxnewthread = $DB_site->query_first("
SELECT max(maxnewthread) AS number FROM " . TABLE_PREFIX . "usergroup
WHERE usergroupid IN $bbuserinfo[membergroupids]
");
This way we get the maximum value for the given variable for all the groups the user belongs too. Since a value of zero means no max, only non-zero values will give us a limit.
I want this to apply only in a given forum though, not site wide. I don't know if the forum-permissions will take this into account?