EDIT: This has been fixed in r650
---------------
GS 3.1 beta has some encoding problems in the header's meta description and keywords. Example:
is encoded as (look at the page's source code):
instead of:
I've suggested this patch to the encode_quotes() function:
Edit admin/inc/basic.php, line 471,
Replace:
by:
This works for me, tested with the latest r646 featured beta.
Could you please test this?
---------------
GS 3.1 beta has some encoding problems in the header's meta description and keywords. Example:
Code:
á ä
Code:
á ä
Code:
á ä
I've suggested this patch to the encode_quotes() function:
Edit admin/inc/basic.php, line 471,
Replace:
Code:
$text = htmlspecialchars($text, ENT_QUOTES);
Code:
$text = htmlspecialchars($text, ENT_QUOTES, 'UTF-8', false);
This works for me, tested with the latest r646 featured beta.
Could you please test this?