Quote:
Originally Posted by bleros
Great Jafo good work..
Now how to block just Russian and Chinna  how to use
|
If you want to do that you could treat the valid country codes section as an EXCLUDE list, then just change this line in whois.php:
Code:
if (!in_array($country, $valid_countries)) { $userdata->set('usergroupid', 4); }
To this:
Code:
if (in_array($country, $valid_countries)) { $userdata->set('usergroupid', 4); }