
09-05-2003, 08:59 PM
|
 |
|
|
Join Date: Oct 2002
Posts: 444
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Today at 04:07 PM Me! said this in Post #2230
Is it possible to set it so that the itemshop and bank are not viewable to guests?
|
In itemshop.php, find:
PHP Code:
require('./global.php');
and BELOW it, add:
PHP Code:
if ($bbuserinfo['userid'] == 0)
{
show_nopermission();
}
|