
03-25-2007, 12:40 PM
|
 |
|
|
Join Date: Feb 2006
Location: Bonn, Germany
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by macuser
functions_post_thanks.php
Code:
function can_delete_all_thanks()
{
global $vbulletin;
if ($vbulletin->userinfo['usergroupid'] == '6')
{
return true;
}
How can i edit 6 to 5,6,7 ?
Thanks
|
PHP Code:
function can_delete_all_thanks() { global $vbulletin;
if (is_member_of($vbulletin->userinfo, array(5,6,7))) { return true; }
Try this
|