From b1c3c706db9bfa6b95428b9e84c1d13b6203ecf6 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 3 May 2008 16:14:18 +0000 Subject: [PATCH] limit to chat line lenght --- web/Obj/brisk.phh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index a9e8f84..f29b9a7 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -1272,7 +1272,7 @@ class Room { $only_you = FALSE; // common settings - $msg = substr($mesg,6); + $msg = substr($mesg, 6, 128); $timecur = time(); $dt = date("H:i ", $timecur); -- 2.17.1