Plugin Directory

Changeset 1535312


Ignore:
Timestamp:
11/16/2016 08:31:03 PM (9 years ago)
Author:
jensmueller
Message:

version 2.5.0: fixed a small bug with product ratings

Location:
easy-amazon-product-information/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • easy-amazon-product-information/trunk/eapi_amazon.php

    r1472502 r1535312  
    284284
    285285if(isset($http_response_header)){
    286     if(preg_match("#200#", $http_response_header[8])){//error message is created, when HTTP status != 200
     286    if(preg_match("#200#", $http_response_header[8] . $http_response_header[0] )){//error message is created, when HTTP status != 200
    287287        preg_match("#\d\.\d\svon\s5\sSternen#", $temp, $matches);
    288288        $num_reviews =0;
  • easy-amazon-product-information/trunk/eapi_handler.php

    r1531290 r1535312  
    15631563    $pA->title = esc_sql( $pA->title);
    15641564    $pA->description = esc_sql( $pA->description);
     1565    $pA->features = esc_sql($pA->features);
    15651566        array_push($arr, "('', '" .current_time( 'mysql'). "', '$pA->asin', '$keyword',
    15661567        '$pA->title', '$pA->small_image', '$pA->medium_image', '$pA->large_image',
  • easy-amazon-product-information/trunk/easy_amazon_product_information.php

    r1531290 r1535312  
    44 * Plugin URI: http://jensmueller.one/easy-amazon-product-information/
    55 * 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.0
     6 * Version: 2.5.0
    77 * Author: Jens Müller
    88 * Author URI: http://jensmueller.one
    99 * Text Domain: easy-amazon-product-information
    1010 */
    11 define('EAPI_VERSION', '2.4.0');
     11define('EAPI_VERSION', '2.5.0');
    1212define('EAPI_PLUGIN_DIR',  plugin_dir_path( __FILE__ ));
    1313
  • easy-amazon-product-information/trunk/readme.txt

    r1531290 r1535312  
    9292== Changelog ==
    9393
     94
     952.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
    94992.4.0:
    95100
Note: See TracChangeset for help on using the changeset viewer.