Tue Aug 28 03:06:17 2018wsmith [...] aecopacific.com - Ticket created
Subject:
Bug found
Date:
Tue, 28 Aug 2018 14:05:58 +0700
To:
bug-Net-SugarCRM [...] rt.cpan.org
From:
Wane Smith <wsmith [...] aecopacific.com>
# you are double json encoding which caused us issues.
# when we remove the first encoding here it worked
#$rest_data{'name_value_list'} = encode_json($attributes);
# to this.
$rest_data{'name_value_list'} = $attributes;
$rest_data{'track_view'} = 'false';
my $rest_data_json = encode_json(\%rest_data);