Changeset 1004251
- Timestamp:
- 10/09/2014 07:28:24 AM (11 years ago)
- Location:
- dynamic-audio-player-basic/trunk
- Files:
-
- 2 edited
-
dynamicplayer.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-audio-player-basic/trunk/dynamicplayer.php
r1004041 r1004251 4 4 Plugin URI: http://dynamicaudioplayer.com 5 5 Description: This plugin allows you to add an audio player widget with a dynamic playlist and shortcodes for single buttons 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: Manolo Salsas Durán 8 8 Author URI: http://msalsas.com/en/ … … 52 52 53 53 $dyn_option = get_option( "widget_dynamic-player-widget" ); 54 if(isset($dyn_option[1] ['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Small')54 if(isset($dyn_option[1], $dyn_option[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Small') 55 55 wp_register_style( 'default-stylesheet', plugins_url('/css/smallPlayer.css', __FILE__) ); 56 56 57 else if(isset($dyn_option[1] ['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Large')57 else if(isset($dyn_option[1], $dyn_option[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Large') 58 58 wp_register_style( 'default-stylesheet', plugins_url('/css/largePlayer.css', __FILE__) ); 59 59 -
dynamic-audio-player-basic/trunk/readme.txt
r1004041 r1004251 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.0 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.1.1 = 53 Fix second error when using an older PHP version than 5.4. 54 52 55 = 1.1.0 = 53 56 Fix error fired when using an older PHP version than 5.4.
Note: See TracChangeset
for help on using the changeset viewer.