see this picture:
.
.
yes, i this happened on dolphin 6003, i have compare it to dolphin 6004 and dolphin 6005
AND the problem is just on
.
orca/classes/Forum.php
.
function _buld_topic_desc(&$s)
.
i fixed this function base on dolphin 6005
.
function _buld_topic_desc (&$s) { $s = str_replace(array(' ','&','>','<'), array(' ','&','>','<'),strip_tags ($s)); validate_unicode ($s); $s = '<![CDATA[' . $s . ']]>'; }
.
to
.
function _buld_topic_desc (&$s) { $s = str_replace(array(' ','&','>','<','"'), array(' ','&','>','<',"'"),strip_tags ($s)); validate_unicode ($s); $s = '<![CDATA[' . $s . ']]>'; }
.
but UNFORTUNATELY IT STILL DOESNT WORKS!
.
any suggestion?