@@ -, +, @@ =?UTF-8?q?=94=D1=83=D0=B1=D0=B8=D0=BA}?= correctly Added utf8-encoding in json-header for correct view quotes in quotes editor. --- tools/quotes/quotes_ajax.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/quotes/quotes_ajax.pl +++ a/tools/quotes/quotes_ajax.pl @@ -46,7 +46,7 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user( my $params = $cgi->Vars; # NOTE: Multivalue parameters NOT allowed!! -print $cgi->header('application/json'); +print $cgi->header('application/json; charset=utf-8'); if ($params->{'action'} eq 'add') { my $sth = $dbh->prepare('INSERT INTO quotes (source, text) VALUES (?, ?);'); --