Changeset 720035
- Timestamp:
- 05/29/2013 08:02:35 PM (13 years ago)
- Location:
- multi-video-box/trunk
- Files:
-
- 4 edited
-
classes/class.video.php (modified) (1 diff)
-
functions/functions_shortcodes.php (modified) (1 diff)
-
multi-video-box.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multi-video-box/trunk/classes/class.video.php
r717783 r720035 469 469 } 470 470 else { 471 $width = MVOB_DEFAULT_WIDTH; 472 $height = MVOB_DEFAULT_HEIGHT; 471 $mvob_options = get_option( 'mvob_options' ); 472 473 $width = $mvob_options['mvob_default_width']; 474 $height = $mvob_options['mvob_default_height']; 473 475 } 474 476 -
multi-video-box/trunk/functions/functions_shortcodes.php
r717783 r720035 139 139 // Output the Video 140 140 $first_video = new mvob_video( array( 'video_id' => $group_videos[0]->video_id ) ); 141 $mvob_output .= '<div id="mvob-video-embed">' . $first_video->get_video_file_embed( ) . '</div>';141 $mvob_output .= '<div id="mvob-video-embed">' . $first_video->get_video_file_embed( $group ) . '</div>'; 142 142 143 143 if ( $title_output == "bottom" ) { -
multi-video-box/trunk/multi-video-box.php
r719945 r720035 4 4 Plugin URI: http://www.nuttymango.com/multi-video-box/ 5 5 Description: "Multi Video Box" gives you the capability to output numerous videos on a single page, but only take up the space of a single video. Uses tabbed navigation to switch videos. 6 Version: 1. 36 Version: 1.4 7 7 Author: Scott Kustes 8 8 Author URI: http://www.nuttymango.com/ … … 25 25 // Constants for MVOB definition 26 26 if ( !defined( 'MVOB_DB_VERS' ) ) 27 define( 'MVOB_DB_VERS' , '1. 3' );27 define( 'MVOB_DB_VERS' , '1.4' ); 28 28 if ( !defined( 'MVOB_PLUGIN_URL' ) ) 29 29 define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) ); -
multi-video-box/trunk/readme.txt
r719945 r720035 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1. 37 Stable tag: 1.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 36 36 == Changelog == 37 38 = 1.4 = 39 * Fixed issue with default width/height settings 37 40 38 41 = 1.3 =
Note: See TracChangeset
for help on using the changeset viewer.