@@ -, +, @@ - catalog a record that includes umlauts äöü - write a report, that has the record in the result set - access the JSON output of the report fetchall_arrayref; } - $json_text = to_json($lines); + $json_text = encode_json($lines); if ($cache_active) { $cache->set_in_cache( $cache_key, $json_text, @@ -78,7 +78,7 @@ unless ($json_text) { } } else { - $json_text = to_json($errors); + $json_text = encode_json($errors); } } --