View Full Version : only admin can see
squawell
06-06-2003, 04:11 PM
i add this code in function.php
if ($post[fieldXX]) {
$extra="$post[fieldXX]<br>";
} else {
$extra="";
}
but i just want admin group can see how should i add the code?
thankz.
Xenon
06-06-2003, 04:46 PM
if ($post[fieldXX] and $bbuserinfo['usergroupid'] == 6) {
$extra="$post[fieldXX]<br>";
} else {
$extra="";
}
squawell
06-06-2003, 04:49 PM
Today at 01:46 AM Xenon said this in Post #2 (https://vborg.vbsupport.ru/showthread.php?postid=405220#post405220)
if ($post[fieldXX] and $bbuserinfo['usergroupid'] == 6) {
$extra="$post[fieldXX]<br>";
} else {
$extra="";
}
thankz the reply Xenon........:D:D:D
Xenon
06-06-2003, 04:50 PM
you're welcome
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.