Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands
In directory usw-pr-cvs1:/tmp/cvs-serv1399/chat/lib/commands
Modified Files:
banish.cmd.php3 kick.cmd.php3
Log Message:
new strings to use with the new privileges system
Index: banish.cmd.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/banish.cmd.php3,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** banish.cmd.php3 2001/12/04 20:01:34 1.13
--- banish.cmd.php3 2001/12/05 19:33:00 1.14
***************
*** 76,80 ****
if (intval($targetStatus) >= $dbSessionVars['status'])
{
! $error = sprintf(L_NO_BANISHED, $cmd[2]);
}
else
--- 76,80 ----
if (intval($targetStatus) >= $dbSessionVars['status'])
{
! $error = sprintf(L_CANT_BANISH, $cmd[2]);
}
else
Index: kick.cmd.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/kick.cmd.php3,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** kick.cmd.php3 2001/12/04 20:01:34 1.7
--- kick.cmd.php3 2001/12/05 19:33:00 1.8
***************
*** 77,81 ****
if (intval($targetStatus) >= $dbSessionVars['status'])
{
! $error = sprintf(L_NO_KICKED, $cmd[1]);
}
else
--- 77,81 ----
if (intval($targetStatus) >= $dbSessionVars['status'])
{
! $error = sprintf(L_CANT_KICK, $cmd[1]);
}
else
|