Bug 12114: (QA Followup) Use JSON instead of JSON::XS
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 25 Apr 2014 12:53:25 +0000 (08:53 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 25 Apr 2014 15:32:06 +0000 (15:32 +0000)
RM note: on most platforms, the JSON module will use JSON::XS
by default.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
opac/svc/report
svc/report

index 0b17a4d..326e276 100755 (executable)
@@ -24,7 +24,7 @@
 use Modern::Perl;
 
 use C4::Reports::Guided;
-use JSON::XS;
+use JSON;
 use CGI;
 
 use Koha::Cache;
index 839a91b..45b68e1 100755 (executable)
@@ -22,7 +22,7 @@ use Modern::Perl;
 
 use C4::Auth;
 use C4::Reports::Guided;
-use JSON::XS;
+use JSON;
 use CGI;
 
 use Koha::Cache;