Changeset 1743870
- Timestamp:
- 10/10/2017 11:51:11 AM (8 years ago)
- Location:
- nicechat
- Files:
-
- 6 edited
-
tags/0.1.2/README.txt (modified) (1 diff)
-
tags/0.1.2/admin/class-nice-chat-to-wp-admin-exporter.php (modified) (2 diffs)
-
tags/0.1.2/nice-chat-to-wp.php (modified) (2 diffs)
-
trunk/README.txt (modified) (1 diff)
-
trunk/admin/class-nice-chat-to-wp-admin-exporter.php (modified) (2 diffs)
-
trunk/nice-chat-to-wp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nicechat/tags/0.1.2/README.txt
r1743865 r1743870 11 11 Text Domain: nice-chat-to-wp 12 12 Tested up to: 4.8.2 13 Requires PHP: 5.2.10 13 14 Description: The NiceChat-to-WP give you an ability to one-click integration your WordPress/WooCommerce blog with the NiceChat - the first eCommerce oriented chat. 14 15 -
nicechat/tags/0.1.2/admin/class-nice-chat-to-wp-admin-exporter.php
r1743865 r1743870 728 728 // prepare query-headers 729 729 $sign = $this->make_sign($payload, $secret, preg_replace('/\?.*/', '', $action), $method); 730 $headers = [730 $headers = array( 731 731 'Content-Type: application/json', 732 732 'X-API-Key: '.$key, 733 733 'X-API-Sign: '.$sign 734 ];734 ); 735 735 736 736 // run cURL query … … 751 751 if ($rez === false || $rez === null) { 752 752 $rez = array('status' => 'err'); 753 $code = curl_getinfo($ch)['http_code']; 753 $code = curl_getinfo($ch); 754 $code = $code['http_code']; 754 755 switch ($code) { 755 756 case 404: -
nicechat/tags/0.1.2/nice-chat-to-wp.php
r1743865 r1743870 5 5 * Tags: nicechat, chat, buttonchat, live, chat, livechat 6 6 * Plugin Name: NiceChat_to_WP 7 * Version: 0.1. 17 * Version: 0.1.2 8 8 * Author: NiceChat Team 9 9 * Author URI: https://nice.chat/ … … 12 12 * Text Domain: nice-chat-to-wp 13 13 * Tested up to: 4.8.2 14 * Requires PHP: 5.2.10 14 15 * Description: The NiceChat-to-WP give you an ability to one-click integration your WordPress/WooCommerce blog with the NiceChat - the first eCommerce oriented chat. 15 16 */ -
nicechat/trunk/README.txt
r1743846 r1743870 11 11 Text Domain: nice-chat-to-wp 12 12 Tested up to: 4.8.2 13 Requires PHP: 5.2.10 13 14 Description: The NiceChat-to-WP give you an ability to one-click integration your WordPress/WooCommerce blog with the NiceChat - the first eCommerce oriented chat. 14 15 -
nicechat/trunk/admin/class-nice-chat-to-wp-admin-exporter.php
r1743832 r1743870 728 728 // prepare query-headers 729 729 $sign = $this->make_sign($payload, $secret, preg_replace('/\?.*/', '', $action), $method); 730 $headers = [730 $headers = array( 731 731 'Content-Type: application/json', 732 732 'X-API-Key: '.$key, 733 733 'X-API-Sign: '.$sign 734 ];734 ); 735 735 736 736 // run cURL query … … 751 751 if ($rez === false || $rez === null) { 752 752 $rez = array('status' => 'err'); 753 $code = curl_getinfo($ch)['http_code']; 753 $code = curl_getinfo($ch); 754 $code = $code['http_code']; 754 755 switch ($code) { 755 756 case 404: -
nicechat/trunk/nice-chat-to-wp.php
r1743865 r1743870 12 12 * Text Domain: nice-chat-to-wp 13 13 * Tested up to: 4.8.2 14 * Requires PHP: 5.2.10 14 15 * Description: The NiceChat-to-WP give you an ability to one-click integration your WordPress/WooCommerce blog with the NiceChat - the first eCommerce oriented chat. 15 16 */
Note: See TracChangeset
for help on using the changeset viewer.