edit functions.php find:
PHP Code:
$bdays = $DB_site->query("SELECT username,userid,birthday
FROM user
WHERE birthday LIKE '%-$todayneggmt'
OR birthday LIKE '%-$todayposgmt'");
Replace it as:
PHP Code:
$bdays = $DB_site->query("SELECT username,userid,birthday
FROM user
WHERE (birthday LIKE '%-$todayneggmt'
OR birthday LIKE '%-$todayposgmt') AND usergroupid!=X");
(Replace X with your banned usergroupid)
edit calendar.php, find:
PHP Code:
$birthday=$DB_site->query("SELECT birthday,username,userid from user where birthday like '%-$doublemonth-%'");
Replace it as:
PHP Code:
$birthday=$DB_site->query("SELECT birthday,username,userid from user where birthday like '%-$doublemonth-%' AND usergroupid!=X");
(Replace X with your banned usergroupid)
FYI. forum home hack will be active tomorrow, not in the day you applied.
Enjoy