1) Go to gsconfig.php
and add
2) in admin\inc\basic.php
locate the safe_slash_html() function and replace htmlentities with htmlspecialchars
now greek and other languages will render perfectly in browser instead of entities that affect seo
and add
Code:
define('GSEDITOROPTIONS',"
entities : false
");
2) in admin\inc\basic.php
locate the safe_slash_html() function and replace htmlentities with htmlspecialchars
Code:
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