diff options
author | Mitch Jackson <mitch@freeside.biz> | 2017-12-08 20:25:09 +0000 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2017-12-08 20:25:09 +0000 |
commit | 75905ceede173133e27e1ce5b7046ee62848d541 (patch) | |
tree | 408f38382f1cb035beb04df61dd1453fdd23b9bc /FS | |
parent | 5b40b86bac1a5b4e11c3a5670329711393deac79 (diff) |
Substitute broken JSON::XS with Cpanel::JSON::XS
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Mason.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm index 60e377953..76c3000c9 100644 --- a/FS/FS/Mason.pm +++ b/FS/FS/Mason.pm @@ -77,7 +77,8 @@ if ( -e $addl_handler_use_file ) { use HTML::TableExtract qw(tree); use HTML::FormatText; use HTML::Defang; - use JSON::XS; +# use JSON::XS; ! Maintainers deployed app-breaking defaults, + use Cpanel::JSON::XS; # this is considered safe compatible drop-in replacement # use XMLRPC::Transport::HTTP; # use XMLRPC::Lite; # for XMLRPC::Serializer use MIME::Base64; |