Changeset 729494
- Timestamp:
- 06/21/2013 05:19:15 PM (13 years ago)
- Location:
- multi-video-box/trunk
- Files:
-
- 3 edited
-
functions/functions_shortcodes.php (modified) (3 diffs)
-
multi-video-box.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multi-video-box/trunk/functions/functions_shortcodes.php
r729478 r729494 124 124 $mvob_ajax = '<input type="hidden" id="total_videos" value="' . count( $group_videos ) . '" />'; 125 125 $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 ) ) . '" />'; 127 127 $mvob_ajax .= '<input type="hidden" id="first_video" value="1" />'; 128 128 $mvob_ajax .= '<input type="hidden" id="last_video" value="' . $num_tabs . '" />'; … … 145 145 // Output the Title 146 146 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>'; 148 148 149 149 // Output the loading image … … 152 152 // Output the Description 153 153 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>'; 155 155 156 156 // Output the Video -
multi-video-box/trunk/multi-video-box.php
r729478 r729494 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.5 6 Version: 1.5.1 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.5 ' );27 define( 'MVOB_DB_VERS' , '1.5.1' ); 28 28 if ( !defined( 'MVOB_PLUGIN_URL' ) ) 29 29 define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) ); -
multi-video-box/trunk/readme.txt
r729478 r729494 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1.5 7 Stable tag: 1.5.1 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.5.1 = 39 * Fixed bug on titles with quotes 37 40 38 41 = 1.5 =
Note: See TracChangeset
for help on using the changeset viewer.