I really love the Vb chat system specially the ability to intergrate the styles you have installed onto the board automatically
did notice a very small mistake (well actually an my illiterate co-admin spotted it)
erm banned users are displayed with "Sorry you have
beed...."
Real simple to fix,
Open up VBchat.php
find:
PHP Code:
if($UserIDBanned > 0){
// Your User Doesn't Have Permission To Access The vBChat System, Error Now And Cancel Out All Actions
RunError("Sorry but you have beed denied access permissions to use the vBChat System, please contact the administrator for more information.");
}
and replace with:
PHP Code:
if($UserIDBanned > 0){
// Your User Doesn't Have Permission To Access The vBChat System, Error Now And Cancel Out All Actions
RunError("Sorry but you have been denied access permissions to use the vBChat System, please contact the administrator for more information.");
}
and that will obviously fix it,
once again I must say
VERY GOOD HACK!
Nice one ZT!