Plugin Directory

Changeset 1020184


Ignore:
Timestamp:
11/05/2014 11:34:27 AM (11 years ago)
Author:
Askelon
Message:

Version 2.0.2.1

Location:
wpmovielibrary/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wpmovielibrary/trunk/admin/class-wpmoly-api-wrapper.php

    r1020078 r1020184  
    352352                $certification_alt = '';
    353353                foreach ( $release['countries'] as $country ) {
    354                     if ( $country['iso_3166_1'] == wpmoly_o( 'api-country' ) )
     354                    if ( $country['iso_3166_1'] == wpmoly_o( 'api-country' ) ) {
    355355                        $meta['certification'] = $country['certification'];
    356                     else if ( $country['iso_3166_1'] == wpmoly_o( 'api-country-alt' ) )
     356                    }
     357                    else if ( $country['iso_3166_1'] == wpmoly_o( 'api-country-alt' ) ) {
    357358                        $certification_alt = $country['certification'];
    358                     else
    359                         $meta['certification'] = '';
     359                    }
    360360                }
    361361                if ( '' == $meta['certification'] )
    362                     $meta['certification'] = $certification_alt;
     362                    $meta['certification'] = $certification_alt;
    363363            }
    364364
  • wpmovielibrary/trunk/readme.txt

    r1020086 r1020184  
    55Requires at least: 3.8
    66Tested up to: 4.0
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.2.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    115115
    116116== Changelog ==
     117
     118= 2.0.2.1 =
     119* Fix - Movie certification not correctly fetched on some occasions
    117120
    118121= 2.0.2 =
  • wpmovielibrary/trunk/wpmovielibrary.php

    r1020086 r1020184  
    1818 * Plugin URI:  http://wpmovielibrary.com
    1919 * Description: A WordPress Plugin to manage a personnal library of movies.
    20  * Version:     2.0.2
     20 * Version:     2.0.2.1
    2121 * Author:      Charlie MERLAND
    2222 * Author URI:  http://www.caercam.org/
     
    3535define( 'WPMOLY_PLUGIN',                 plugin_basename( __FILE__ ) );
    3636define( 'WPMOLY_NAME',                   'WPMovieLibrary' );
    37 define( 'WPMOLY_VERSION',                '2.0.2' );
     37define( 'WPMOLY_VERSION',                '2.0.2.1' );
    3838define( 'WPMOLY_SLUG',                   'wpmoly' );
    3939define( 'WPMOLY_URL',                    plugins_url( basename( __DIR__ ) ) );
Note: See TracChangeset for help on using the changeset viewer.