Plugin Directory

Changeset 729494


Ignore:
Timestamp:
06/21/2013 05:19:15 PM (13 years ago)
Author:
skustes
Message:
  • Fixed bug on titles with quotes
Location:
multi-video-box/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • multi-video-box/trunk/functions/functions_shortcodes.php

    r729478 r729494  
    124124        $mvob_ajax = '<input type="hidden" id="total_videos" value="' . count( $group_videos ) . '" />';
    125125        $mvob_ajax .= '<input type="hidden" id="video_ids" value="' . implode( "_|_" , $ary_video_ids ) . '" />';
    126         $mvob_ajax .= '<input type="hidden" id="video_names" value="' . implode( "_|_" , $ary_video_names ) . '" />';
     126        $mvob_ajax .= '<input type="hidden" id="video_names" value="' . htmlspecialchars( implode( "_|_" , $ary_video_names ) ) . '" />';
    127127        $mvob_ajax .= '<input type="hidden" id="first_video" value="1" />';
    128128        $mvob_ajax .= '<input type="hidden" id="last_video" value="' . $num_tabs . '" />';
     
    145145        // Output the Title
    146146        if ( $title == "top" )
    147             $mvob_output .= '<div id="mvob-video-title" class="mvob-video-title-bottom">' . $group_videos[0]->video_name . '</div>';
     147            $mvob_output .= '<div id="mvob-video-title" class="mvob-video-title-top">' . $group_videos[0]->video_name . '</div>';
    148148
    149149        // Output the loading image
     
    152152        // Output the Description
    153153        if ( $description == "top" )
    154             $mvob_output .= '<div class="mvob-video-description-bottom"><p id="mvob-video-description">' . $group_videos[0]->video_description . '</p></div>';
     154            $mvob_output .= '<div class="mvob-video-description-top"><p id="mvob-video-description">' . $group_videos[0]->video_description . '</p></div>';
    155155
    156156        // Output the Video
  • multi-video-box/trunk/multi-video-box.php

    r729478 r729494  
    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.5
     6Version: 1.5.1
    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.5' );
     27    define( 'MVOB_DB_VERS' , '1.5.1' );
    2828if ( !defined( 'MVOB_PLUGIN_URL' ) )
    2929    define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) );
  • multi-video-box/trunk/readme.txt

    r729478 r729494  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 1.5
     7Stable tag: 1.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.5.1 =
     39* Fixed bug on titles with quotes
    3740
    3841= 1.5 =
Note: See TracChangeset for help on using the changeset viewer.