Changeset 1020184
- Timestamp:
- 11/05/2014 11:34:27 AM (11 years ago)
- Location:
- wpmovielibrary/trunk
- Files:
-
- 3 edited
-
admin/class-wpmoly-api-wrapper.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpmovielibrary.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmovielibrary/trunk/admin/class-wpmoly-api-wrapper.php
r1020078 r1020184 352 352 $certification_alt = ''; 353 353 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' ) ) { 355 355 $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' ) ) { 357 358 $certification_alt = $country['certification']; 358 else 359 $meta['certification'] = ''; 359 } 360 360 } 361 361 if ( '' == $meta['certification'] ) 362 $meta['certification'] = $certification_alt;362 $meta['certification'] = $certification_alt; 363 363 } 364 364 -
wpmovielibrary/trunk/readme.txt
r1020086 r1020184 5 5 Requires at least: 3.8 6 6 Tested up to: 4.0 7 Stable tag: 2.0.2 7 Stable tag: 2.0.2.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 115 115 116 116 == Changelog == 117 118 = 2.0.2.1 = 119 * Fix - Movie certification not correctly fetched on some occasions 117 120 118 121 = 2.0.2 = -
wpmovielibrary/trunk/wpmovielibrary.php
r1020086 r1020184 18 18 * Plugin URI: http://wpmovielibrary.com 19 19 * Description: A WordPress Plugin to manage a personnal library of movies. 20 * Version: 2.0.2 20 * Version: 2.0.2.1 21 21 * Author: Charlie MERLAND 22 22 * Author URI: http://www.caercam.org/ … … 35 35 define( 'WPMOLY_PLUGIN', plugin_basename( __FILE__ ) ); 36 36 define( 'WPMOLY_NAME', 'WPMovieLibrary' ); 37 define( 'WPMOLY_VERSION', '2.0.2 ' );37 define( 'WPMOLY_VERSION', '2.0.2.1' ); 38 38 define( 'WPMOLY_SLUG', 'wpmoly' ); 39 39 define( 'WPMOLY_URL', plugins_url( basename( __DIR__ ) ) );
Note: See TracChangeset
for help on using the changeset viewer.