Changeset 1160563
- Timestamp:
- 05/14/2015 03:44:51 PM (11 years ago)
- Location:
- dynamic-audio-player-basic/trunk
- Files:
-
- 4 edited
-
css/largePlayer.css (modified) (1 diff)
-
css/smallPlayer.css (modified) (1 diff)
-
dynamicplayer.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-audio-player-basic/trunk/css/largePlayer.css
r988054 r1160563 71 71 width: 100%; 72 72 height: 0; 73 line-height: 1; 73 74 z-index: 100000; 74 75 } -
dynamic-audio-player-basic/trunk/css/smallPlayer.css
r988054 r1160563 71 71 width: 100%; 72 72 height: 0; 73 line-height: 1; 73 74 z-index: 100000; 74 75 } -
dynamic-audio-player-basic/trunk/dynamicplayer.php
r1160523 r1160563 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. 36 Version: 2.0.4 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] ,$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']) && 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(is_array($dyn_option) && isset($dyn_option[1] ,$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']) && 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
r1160523 r1160563 3 3 Tags: audio, player, mp3, ogg, playlist 4 4 Requires at least: 3.0.1 5 Tested up to: 4.2. 15 Tested up to: 4.2.2 6 6 Stable tag: 1.1.2 7 7 License: GPLv2 or later … … 49 49 == Changelog == 50 50 51 = 2.0.4 = 52 Small fix. 53 51 54 = 2.0.3 = 52 55 Fix CSS.
Note: See TracChangeset
for help on using the changeset viewer.