Bug 6739: (follow-up) update DBIC schema classes
[koha_fer] / opac / svc / report
index 1ded9c9..326e276 100755 (executable)
@@ -70,7 +70,7 @@ unless ($json_text) {
         else {
             $lines = $sth->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);
     }
 }