Changeset 1160665
- Timestamp:
- 05/14/2015 05:41:24 PM (11 years ago)
- Location:
- dynamic-audio-player-basic/trunk
- Files:
-
- 2 edited
-
dynamicplayer.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-audio-player-basic/trunk/dynamicplayer.php
r1160563 r1160665 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: 2.0. 46 Version: 2.0.5 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(is_array($dyn_option) && isset($dyn_option[1]) && is_array($dyn_option[1]) && isset($dyn_option[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Small')54 if(is_array($dyn_option) && isset($dyn_option[1]) && is_array($dyn_option[1]) && isset($dyn_option[1]['dynTotalWidth']) && $dyn_option[1]['dynTotalWidth'] == 'Small') 55 55 wp_register_style( 'default-stylesheet', plugins_url('/css/smallPlayer.css', __FILE__) ); 56 56 57 else if(is_array($dyn_option) && isset($dyn_option[1]) && is_array($dyn_option[1]) && isset($dyn_option[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Large')57 else if(is_array($dyn_option) && isset($dyn_option[1]) && is_array($dyn_option[1]) && isset($dyn_option[1]['dynTotalWidth']) && $dyn_option[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
r1160563 r1160665 49 49 == Changelog == 50 50 51 = 2.0.5 = 52 Small fix. 53 51 54 = 2.0.4 = 52 55 Small fix.
Note: See TracChangeset
for help on using the changeset viewer.