I've got fixes for IE8+ btw, soon there will be style fixes for IE7 too.
For IE8+:
open up js/phpbbchat.js
Find
Code: Select all
'typing': 0,
Code: Select all
'typing': 0
Code: Select all
var UsersChatting = ($.cookie( 'phpBBchat_chatting' )).split( '.' );
Code: Select all
var UsersChatting = ( $.cookie( 'phpBBchat_chatting' ) == undefined ) ? '' : ($.cookie( 'phpBBchat_chatting' )).split( '.' );
Code: Select all
'unread': ( Unread[ item.USER_ID ] == undefined ) ? 0 : Unread[ item.USER_ID ],
Code: Select all
'unread': ( Unread[ item.USER_ID ] == undefined ) ? 0 : Unread[ item.USER_ID ]
That's it.