Log in

View Full Version : allow othe usergroups to admin donate?


SHARKY
01-31-2005, 09:48 PM
<if condition="$bbuserinfo['usergroupid'] == '6'"><a href="ushop.php?do=a&shortname=admindonate&userid=$post[userid]" target="_blank">$vbphrase[ucs_points]</a><else />$vbphrase[ucs_points]</if>: $points (<a href="ushop.php?do=a&shortname=donate&userid=$post[userid]" target="_blank">Donate</a>)

what would i edit that to, to allow my jr admins i made to donate

or for it to find them because thier secondary usergroup is admin

i want them to be able to click points in the users post and admin donate to the user

Zachery
01-31-2005, 09:57 PM
<if condition="in_array($bbuserinfo['usergroupid'], array(X,Y,Z)">

Change X y and Z or just use X and Y ect

SHARKY
01-31-2005, 10:03 PM
Parse error: parse error, unexpected ';' in /home/sharkysc/public_html/forums/includes/adminfunctions_template.php(3055) : eval()'d code on line 390

got that when i added it

Link14716
01-31-2005, 10:10 PM
<if condition="in_array($bbuserinfo['usergroupid'], array(X,Y,Z)">

Change X y and Z or just use X and Y ect
Bad Zachery. You missed an end parenthesis. ;)

<if condition="in_array($bbuserinfo['usergroupid'], array(X,Y,Z))">

SHARKY
01-31-2005, 10:23 PM
that worked like a charm....thx for the fast reply

Zachery
02-01-2005, 10:47 AM
Bad Zachery. You missed an end parenthesis. ;)

<if condition="in_array($bbuserinfo['usergroupid'], array(X,Y,Z))">
Bleh, it happens