summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-12-13 15:28:57 -0800
committerIvan Kohler <ivan@freeside.biz>2015-12-13 15:28:57 -0800
commit2748aaf4aa3f19e17a37edc07e89ee402108900d (patch)
tree02c51b592ad087101f935269c5b664b313657b80 /httemplate/elements
parent6d769244a6aa43877c04e227637c80ae1f0a410b (diff)
JSON::XS -> Cpanel::JSON::XS
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/htmlarea.html2
-rw-r--r--httemplate/elements/select-tiered.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/elements/htmlarea.html b/httemplate/elements/htmlarea.html
index 4f9b72163..dba744e23 100644
--- a/httemplate/elements/htmlarea.html
+++ b/httemplate/elements/htmlarea.html
@@ -32,7 +32,7 @@ Example:
my %opt = @_;
my $config = {
'height' => ($opt{height} || 420),
- 'startupFocus' => JSON::true,
+ 'startupFocus' => Cpanel::JSON::XS::true,
'skin' => 'kama',
'toolbarCanCollapse' => JSON::true,
'removePlugins' => 'elementspath',
diff --git a/httemplate/elements/select-tiered.html b/httemplate/elements/select-tiered.html
index 48469dc04..e76bf762b 100644
--- a/httemplate/elements/select-tiered.html
+++ b/httemplate/elements/select-tiered.html
@@ -124,7 +124,7 @@ my %opt = @_;
my $pre = $opt{prefix} || '';
my $tiers = $opt{tiers} or die "no tiers defined";
-my $json = JSON::XS->new();
+my $json = Cpanel::JSON::XS->new();
$json->canonical;
my $i;