
05-01-2003, 02:08 AM
|
|
|
Join Date: Oct 2002
Posts: 166
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
04-11-03 at 02:40 PM mlx said this in Post #191
If I did not oversee a reply, noone ever fixed the problem described here.
I did the following which fixed it for me.
replace (around line 885):
PHP Code:
$message2 = eregi_replace("\{[^}]*\}","",$message);
with:
PHP Code:
$message2 = ereg_replace("\r\n","",$message);
$message2 = eregi_replace("\{[^}]*\}","",$message2);
Oh and last but not least thanks for the great hack.
|
I get a parse error with this......
|