X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbrisk.phh;h=32168dc1801af1168a7f7f89ad8bf4493c0609d4;hb=5b42d77cdb09b136c0243184e46a43db453ef8ab;hp=7985a10e27b7ae3f28dded718f35a1f509c2d394;hpb=33e291939c0a084e743c2b017b4cadaeb74c8148;p=brisk.git diff --git a/web/brisk.phh b/web/brisk.phh index 7985a10..32168dc 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -36,7 +36,7 @@ define(BRISK_DEBUG, FALSE); function xcape($s) { - return (str_replace('@', '@', str_replace('|', '¦', htmlentities($s,ENT_COMPAT,"UTF-8")))); + return (str_replace('\\', '\\\\', str_replace('@', '@', str_replace('|', '¦', htmlentities($s,ENT_COMPAT,"UTF-8"))))); } @@ -541,8 +541,6 @@ class brisco { } } else { - $user_mesg = xcape($user_mesg); - for ($i = 0 ; $i < ($user->stat == 'room' ? MAX_PLAYERS : PLAYERS_N) ; $i++) { if ($user->stat == 'room') { $user_cur = &$this->user[$i]; @@ -554,8 +552,8 @@ class brisco { } $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; "; - $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('chatt_sub("%s","%s");', - $dt.xcape($user->name), $user_mesg); + $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('chatt_sub("%s",\'%s\');', + $dt.xcape($user->name), xcape($user_mesg)); $user_cur->step++; } }