Changeset 2654939
- Timestamp:
- 01/10/2022 02:16:14 AM (4 years ago)
- Location:
- jt-express/trunk
- Files:
-
- 2 edited
-
includes/class-jnt-api.php (modified) (2 diffs)
-
jnt.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jt-express/trunk/includes/class-jnt-api.php
r2607825 r2654939 26 26 'qty' => $value['qty'], 27 27 'weight' => $value['weight'], 28 'item_name' => substr($value['item'], 0, 200),28 'item_name' => mb_substr($value['item'], 0, 200, 'UTF-8'), 29 29 'payType' => $value['payType'], 30 30 'goodsType' => $value['goodsType'], … … 168 168 $response = wp_remote_post($url, array('sslverify' => false, 'headers' => $header, 'body' => $json_data)); 169 169 $res = wp_remote_retrieve_body($response); 170 file_put_contents('abc.txt', $res);171 170 172 171 $res = json_decode($res, true); -
jt-express/trunk/jnt.php
r2607825 r2654939 4 4 Description: WooCommerce integration for J&T. 5 5 Author: woocs 6 Version: 1.0.2 36 Version: 1.0.24 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt … … 13 13 } 14 14 15 define( 'JNT_VERSION', '1.0.2 3' );15 define( 'JNT_VERSION', '1.0.24' ); 16 16 define( 'JNT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 17 17
Note: See TracChangeset
for help on using the changeset viewer.