Non ASCII characters entered in a review do not appear correctly when viewing that review after it has been submitted. For example:
example1.png

should appear like this:
example2.png

This has been resolved in the next release of this module.


To fix in versions 1.0.5 and 1.0.4


Upload this file----->get_reviews.func.php
to the following folder:
squirrelcart/modules/review/functions/


To fix in older versions

1. Open squirrelcart/modules/review/functions/get_reviews.func.php in an editor.

2. Locate this code (around line #221):
PHP Code:
// format var for use in HTML
foreach($review as $var => $val$review[$var] = htmlentities($val); 
3. Change that to:
PHP Code:
// format var for use in XHTML
$review sc_xml_safe($review); 
4. Save the file

5. If you are running a version of Squirrelcart prior to v3.0.0, upload this file ---->sc_xml_safe.func.php
to squirrelcart/functions/common/