Changeset 720032
- Timestamp:
- 05/29/2013 08:00:03 PM (13 years ago)
- Location:
- multi-video-box/tags/1.4
- Files:
-
- 2 edited
- 15 copied
-
. (copied) (copied from multi-video-box/trunk)
-
classes/class.group_form.php (copied) (copied from multi-video-box/trunk/classes/class.group_form.php)
-
classes/class.video.php (modified) (1 diff)
-
classes/class.video_embed.php (copied) (copied from multi-video-box/trunk/classes/class.video_embed.php)
-
classes/class.video_form.php (copied) (copied from multi-video-box/trunk/classes/class.video_form.php)
-
css/mvob_style_compressed.css (copied) (copied from multi-video-box/trunk/css/mvob_style_compressed.css)
-
functions/functions_shortcodes.php (modified) (1 diff)
-
images/left-arrow.png (copied) (copied from multi-video-box/trunk/images/left-arrow.png)
-
images/right-arrow.png (copied) (copied from multi-video-box/trunk/images/right-arrow.png)
-
js/mvob_scripts.js (copied) (copied from multi-video-box/trunk/js/mvob_scripts.js)
-
models/database.php (copied) (copied from multi-video-box/trunk/models/database.php)
-
multi-video-box.php (copied) (copied from multi-video-box/trunk/multi-video-box.php) (2 diffs)
-
readme.txt (copied) (copied from multi-video-box/trunk/readme.txt) (2 diffs)
-
views/common/instructions.php (copied) (copied from multi-video-box/trunk/views/common/instructions.php)
-
views/group/add_videos_to_group.php (copied) (copied from multi-video-box/trunk/views/group/add_videos_to_group.php)
-
views/video/add_video.php (copied) (copied from multi-video-box/trunk/views/video/add_video.php)
-
views/video/add_video_to_groups.php (copied) (copied from multi-video-box/trunk/views/video/add_video_to_groups.php)
Legend:
- Unmodified
- Added
- Removed
-
multi-video-box/tags/1.4/classes/class.video.php
r717783 r720032 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/tags/1.4/functions/functions_shortcodes.php
r717783 r720032 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/tags/1.4/multi-video-box.php
r719945 r720032 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/tags/1.4/readme.txt
r719945 r720032 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.