Plugin Directory

Changeset 720032


Ignore:
Timestamp:
05/29/2013 08:00:03 PM (13 years ago)
Author:
skustes
Message:

Tagging version 1.4

Location:
multi-video-box/tags/1.4
Files:
2 edited
15 copied

Legend:

Unmodified
Added
Removed
  • multi-video-box/tags/1.4/classes/class.video.php

    r717783 r720032  
    469469        }
    470470        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'];
    473475        }
    474476
  • multi-video-box/tags/1.4/functions/functions_shortcodes.php

    r717783 r720032  
    139139        // Output the Video
    140140        $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>';
    142142
    143143        if ( $title_output == "bottom" ) {
  • multi-video-box/tags/1.4/multi-video-box.php

    r719945 r720032  
    44Plugin URI: http://www.nuttymango.com/multi-video-box/
    55Description: "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.3
     6Version: 1.4
    77Author: Scott Kustes
    88Author URI: http://www.nuttymango.com/
     
    2525// Constants for MVOB definition
    2626if ( !defined( 'MVOB_DB_VERS' ) )
    27     define( 'MVOB_DB_VERS' , '1.3' );
     27    define( 'MVOB_DB_VERS' , '1.4' );
    2828if ( !defined( 'MVOB_PLUGIN_URL' ) )
    2929    define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) );
  • multi-video-box/tags/1.4/readme.txt

    r719945 r720032  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 1.3
     7Stable tag: 1.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.4 =
     39* Fixed issue with default width/height settings
    3740
    3841= 1.3 =
Note: See TracChangeset for help on using the changeset viewer.