If I have the chat room completely embedded (autologin enabled and such), if someone isn't logged in, I don't expect them to be able to click on the chatroom and have the java load with an "incorrect login" come up.
The previous page had the print_no_permission script in there for people not logged in, I'd suggest adding it back in as I would think people would expect it to work the same.
Also - I'd expect the "who's chatting" to follow the same permissions as "active users", perhaps add this into the who's chatting page:
Quote:
if (!($permissions['wolpermissions'] & CANWHOSONLINE))
{
print_no_permission();
}
|
That's from online.php for anyone looking to mimic permissions easily. You can just place it below:
Quote:
define('THIS_SCRIPT','chat_online');
|
Great job on the update, my users really like the who's chatting.
One odd thing's happening: my actual chat window is wider than I'm specifying. Has a minimum width been put into place? My template's a bit off now because of it.