I have a small question that I have with one of the perks in the download.I am installing perks section that involes avatars and I need to add more than one user group to be able to upload custom avatars.Now in the insructions its says to do this
FIND:
-----------------------------
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts)
-----------------------------
CHANGE TO:
-----------------------------
if ((($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts) || ($bbuserinfo[usergroupid] == 9))
-----------------------------
NEXT FIND:
-----------------------------
if ($bbuserinfo['posts']<$avatarcustomposts) {
-----------------------------
CHANGE TO:
-----------------------------
if (($bbuserinfo['posts']<$avatarcustomposts) && ($bbuserinfo[usergroupid] != 9)) {
Which I have done and I get no errors but the problem is what I changed it only sees the first group of users.What mine look like is this
if ((($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts) || ($bbuserinfo[usergroupid] == 8)
|| ($post[usergroupid] == 9) || ($post[usergroupid] == 7) || ($post[usergroupid] == 6) || ($post[usergroupid] == 11) || ($post[usergroupid] == 5)) {
And this
if (($bbuserinfo['posts']<$avatarcustomposts) && ($bbuserinfo[usergroupid] != 8) && ($post[usergroupid] != 9) && ($post[usergroupid] != 7) && ($post[usergroupid] != 6) && ($post[usergroupid] != 5)) {
What is it that I am doing wrong??????
Thanks for you help as I am very new at php and just cant firgure this one out....Thanks
|