From da8d126c9a524dfefe610684349e69bb4d9c7a79 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 25 Apr 2014 08:53:25 -0400 Subject: [PATCH] Bug 12114: (QA Followup) Use JSON instead of JSON::XS RM note: on most platforms, the JSON module will use JSON::XS by default. Signed-off-by: Galen Charlton --- opac/svc/report | 2 +- svc/report | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opac/svc/report b/opac/svc/report index 0b17a4de72..326e276d1d 100755 --- a/opac/svc/report +++ b/opac/svc/report @@ -24,7 +24,7 @@ use Modern::Perl; use C4::Reports::Guided; -use JSON::XS; +use JSON; use CGI; use Koha::Cache; diff --git a/svc/report b/svc/report index 839a91b403..45b68e15cc 100755 --- a/svc/report +++ b/svc/report @@ -22,7 +22,7 @@ use Modern::Perl; use C4::Auth; use C4::Reports::Guided; -use JSON::XS; +use JSON; use CGI; use Koha::Cache; -- 2.39.5