Topic: Is it possible to only allow a certain usergroup to upload an avatar.
Is it possible to only allow a certain usergroup to upload an avatar.
The title says it all.
EDIT::
Nevermind, i figured it out!
I changed the
"
if ($pun_config['o_avatars'] == '0')
message($lang_profile['Avatars disabled']);
"
In Profile.php
to
"
if ($pun_user['g_id'] == 8)
message($lang_profile['Avatars disabled']);
""
If anyone wanted to know..