Changeset 1004041
- Timestamp:
- 10/08/2014 06:50:43 PM (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
r988111 r1004041 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. 0.26 Version: 1.1.0 7 7 Author: Manolo Salsas Durán 8 8 Author URI: http://msalsas.com/en/ … … 51 51 wp_enqueue_style( 'jscrollpane-stylesheet' ); 52 52 53 if(isset(get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Small') 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 55 wp_register_style( 'default-stylesheet', plugins_url('/css/smallPlayer.css', __FILE__) ); 55 56 56 else if(isset( get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Large')57 else if(isset($dyn_option[1]['dynTotalWidth']) && get_option( "widget_dynamic-player-widget" )[1]['dynTotalWidth'] == 'Large') 57 58 wp_register_style( 'default-stylesheet', plugins_url('/css/largePlayer.css', __FILE__) ); 58 59 -
dynamic-audio-player-basic/trunk/readme.txt
r988111 r1004041 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.0 6 Stable tag: 1. 0.26 Stable tag: 1.1.0 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.0.0 = 53 First version 52 = 1.1.0 = 53 Fix error fired when using an older PHP version than 5.4. 54 55 = 1.0.2 = 56 Fix rate link 54 57 55 58 = 1.0.1 = 56 59 Fix readme link 57 60 58 = 1.0.2 = 59 Fix rate link 61 = 1.0.0 = 62 First version 63 64
Note: See TracChangeset
for help on using the changeset viewer.