Changeset 1136332
- Timestamp:
- 04/16/2015 04:36:14 PM (11 years ago)
- Location:
- 2kb-amazon-affiliates-store/trunk
- Files:
-
- 2 edited
-
lib/kbAmzApi.php (modified) (2 diffs)
-
plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
2kb-amazon-affiliates-store/trunk/lib/kbAmzApi.php
r1128309 r1136332 63 63 $response = wp_remote_get($requestUrl); 64 64 $content = ''; 65 if (is set($response['body'])) {65 if (is_array($response) && isset($response['body'])) { 66 66 $content = $response['body']; 67 67 } … … 72 72 $data['success'] = false; 73 73 $data['error'] = 'Server connection error.'; 74 if ($response instanceof WP_Error) { 75 $data['error'] .= $response->get_error_message(); 76 } 74 77 } 75 78 return $data; -
2kb-amazon-affiliates-store/trunk/plugin.php
r1135668 r1136332 4 4 * Plugin URI: http://www.2kblater.com/?p=8318 5 5 * Description: Amazon Affiliate Store Plugin With Variants, Cart, Checkout, Custom Themes, Variants and Versions. Easy to manage and setup. Sell wide range of physical and digital products imported from Amazon Affiliate API using 90 days cookie reference. This plugin is released with GPL2 license. 6 * Version: 2.0.0 BETA 7 6 * Version: 2.0.0 BETA 7.1 7 7 * Author: 2kblater.com 8 8 * Author URI: http://www.2kblater.com … … 16 16 } 17 17 18 define('KbAmazonVersion', '2.0.0 BETA 7 ');18 define('KbAmazonVersion', '2.0.0 BETA 7.1'); 19 19 define('KbAmazonVersionNumber', 200); 20 20 define('KbAmazonStoreFolderName', pathinfo(dirname(__FILE__), PATHINFO_FILENAME));
Note: See TracChangeset
for help on using the changeset viewer.