Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?
5min reading time
April 05 2005
If you want to update your fusion_core.php manually. Simply look for the following at approximately line 323:

$message = preg_replace_callback("/&#([0-9]{1,3});/", create_function('$matches', 'return chr($matches[1]);'), $message);



Add the following after the above line:

$message = preg_replace_callback("/&#([0-9]{1,3})/", create_function('$matches', 'return chr($matches[1]);'), $message);




Now look for the second line at approximately line 342:

$message = preg_replace_callback("/&#([0-9]{1,3});/", create_function('$matches', 'return chr($matches[1]);'), $message);



And replace the above line with the following lines:

$text = preg_replace_callback("/&#([0-9]{1,3});/", create_function('$matches', 'return chr($matches[1]);'), $text);
$text = preg_replace_callback("/&#([0-9]{1,3})/", create_function('$matches', 'return chr($matches[1]);'), $text);




Note that the second line's string at line 342 should be $text not $message.
More on PHPFusion
Happy New 2023
To all our National Support Sites, Developers, Co-workers, Users, Supporters and to all our friends, fellow Fusioneers and your families we wish you all a Merry Christmas and a Happy New Year !
December 24 2022 1 minute
We are very happy to announce our latest branch release of Andromeda. Download PHPFusion 9.10.30 here   You can read the initial release notes of Andromeda here
September 01 2022 2 minutes
We are very happy to announce our latest branch release of Andromeda. Download PHPFusion 9.10.20 here   You can read the initial release notes of Andromeda here
February 04 2022 3 minutes
We are very happy to announce our latest release of Tesseract. Download PHPFusion 8.00.100 here
December 15 2021 2 minutes