Changeset 1535312
- Timestamp:
- 11/16/2016 08:31:03 PM (9 years ago)
- Location:
- easy-amazon-product-information/trunk
- Files:
-
- 4 edited
-
eapi_amazon.php (modified) (1 diff)
-
eapi_handler.php (modified) (1 diff)
-
easy_amazon_product_information.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-amazon-product-information/trunk/eapi_amazon.php
r1472502 r1535312 284 284 285 285 if(isset($http_response_header)){ 286 if(preg_match("#200#", $http_response_header[8] )){//error message is created, when HTTP status != 200286 if(preg_match("#200#", $http_response_header[8] . $http_response_header[0] )){//error message is created, when HTTP status != 200 287 287 preg_match("#\d\.\d\svon\s5\sSternen#", $temp, $matches); 288 288 $num_reviews =0; -
easy-amazon-product-information/trunk/eapi_handler.php
r1531290 r1535312 1563 1563 $pA->title = esc_sql( $pA->title); 1564 1564 $pA->description = esc_sql( $pA->description); 1565 $pA->features = esc_sql($pA->features); 1565 1566 array_push($arr, "('', '" .current_time( 'mysql'). "', '$pA->asin', '$keyword', 1566 1567 '$pA->title', '$pA->small_image', '$pA->medium_image', '$pA->large_image', -
easy-amazon-product-information/trunk/easy_amazon_product_information.php
r1531290 r1535312 4 4 * Plugin URI: http://jensmueller.one/easy-amazon-product-information/ 5 5 * Description: Mit EAPI können Sie aus der Amazon API zahlreiche Produktinformationen auslesen und in Ihre Webseite einbinden. Die Anzeige auf der Webseite kann individuell nach Ihren Bedürfnissen angepasst werden. 6 * Version: 2. 4.06 * Version: 2.5.0 7 7 * Author: Jens Müller 8 8 * Author URI: http://jensmueller.one 9 9 * Text Domain: easy-amazon-product-information 10 10 */ 11 define('EAPI_VERSION', '2. 4.0');11 define('EAPI_VERSION', '2.5.0'); 12 12 define('EAPI_PLUGIN_DIR', plugin_dir_path( __FILE__ )); 13 13 -
easy-amazon-product-information/trunk/readme.txt
r1531290 r1535312 92 92 == Changelog == 93 93 94 95 2.5.0: 96 97 * Der Algorithmus zur Anzeige der Produktbewertungen wurde minimal angepasst. So können Produktbewertungen wieder zuverlässiger angezeigt werden. | Fixed a bug with the product ratings. 98 94 99 2.4.0: 95 100
Note: See TracChangeset
for help on using the changeset viewer.