diff options
author | Mark Wells <mark@freeside.biz> | 2016-03-10 01:38:20 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-03-10 01:38:20 -0800 |
commit | 5c845db529c947ca6fabfb3f86fc81f21167f725 (patch) | |
tree | 43bffe557fba45a6dbe69104d33a9ea81059efd7 | |
parent | 733afa09f60a32088277bf743ac29d9caa1c7c78 (diff) |
revert to JSON::XS under 3.x, fix for #40056
-rw-r--r-- | FS/FS/part_export/portaone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/portaone.pm b/FS/FS/part_export/portaone.pm index cb1373a00..5c2c1cf4f 100644 --- a/FS/FS/part_export/portaone.pm +++ b/FS/FS/part_export/portaone.pm @@ -4,7 +4,7 @@ use strict; use base qw( FS::part_export ); -use Cpanel::JSON::XS; +use JSON::XS; use Net::HTTPS::Any qw(https_post); use FS::Conf; |