Loading...
 
Skip to main content

Features / Usability


BUG in chatlib.php

posts: 1

My wife, a computer programmer, found a bug in chatlib.php. If you use ' in your message, you won't see the message at all. So we ended up with a change in chatlib.php and adding one line at the beginning of send_message()

$data=str_replace("'", "\'", $data);


And it works.

posts: 1001 Canada

Hey,
I could commit such fix, but it would be better that someone who knows what was causing the problem verify that it's the best way (performance?) to fix it. I would recommend to open a Patch tracker on SourceForge.
Thanks to your girlfriend anyway.