Verfasst: 12.09.2008 07:56
OK, ich habe mal einen Blick in den Code geworfen...hat mir jetzt keine Ruhe gelassen... 
Die User werden bei erreichen des "Max." Wertes aus der automatisch zugewiesenen Gruppe herausgeschmissen.
includes/functions_autogroup.php

Die User werden bei erreichen des "Max." Wertes aus der automatisch zugewiesenen Gruppe herausgeschmissen.
includes/functions_autogroup.php
Code: Alles auswählen
/**
* If values got out of whack, make sure user is properly kicked out of
* special status that new groups may assign.
* Cases where users might get kicked out:
* - Warnings expire
* - Post count drops due to post/topic/forum deletion
*
* This also handles hitting the maximum "as predicted"
*/
if (($data['group_min_' . $column] > 0 && $value < $data['group_min_' . $column]) ||
($data['group_max_' . $column] > 0 && $value > $data['group_max_' . $column]))
{
$remove_groups[$group_id][] = $user_id;
}