Topic: Solution for languages that render as entities
1) Go to gsconfig.php
and add
define('GSEDITOROPTIONS',"
entities : false
");2) in admin\inc\basic.php
locate the safe_slash_html() function and replace htmlentities with htmlspecialchars
function safe_slash_html($text) {
if (get_magic_quotes_gpc()==0) {
$text = addslashes(htmlspecialchars($text, ENT_QUOTES, 'UTF-8'));
} else {
$text = htmlentities($text, ENT_QUOTES, 'UTF-8');
}
return $text;
}now greek and other languages will render perfectly in browser instead of entities that affect seo
Download


