Changeset 3266651
- Timestamp:
- 04/04/2025 01:50:32 AM (10 months ago)
- Location:
- wp-video-lightbox/trunk
- Files:
-
- 3 edited
-
js/jquery.prettyPhoto.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-video-lightbox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-video-lightbox/trunk/js/jquery.prettyPhoto.js
r2925737 r3266651 213 213 // Set the description 214 214 if(typeof pp_descriptions[set_position] != 'undefined' && pp_descriptions[set_position] != ""){ 215 $pp_pic_holder.find('.pp_description').show(). html(unescape(pp_descriptions[set_position]));215 $pp_pic_holder.find('.pp_description').show().text(unescape(pp_descriptions[set_position])); 216 216 }else{ 217 217 $pp_pic_holder.find('.pp_description').hide(); … … 230 230 $pp_pic_holder.fadeIn(function(){ 231 231 // Set the title 232 (settings.show_title && pp_titles[set_position] != "" && typeof pp_titles[set_position] != "undefined") ? $ppt. html(unescape(pp_titles[set_position])) : $ppt.html(' ');232 (settings.show_title && pp_titles[set_position] != "" && typeof pp_titles[set_position] != "undefined") ? $ppt.text(unescape(pp_titles[set_position])) : $ppt.html(' '); 233 233 234 234 imgPreloader = ""; -
wp-video-lightbox/trunk/readme.txt
r3186776 r3266651 5 5 Requires at least: 3.0 6 6 Tested up to: 6.7 7 Stable tag: 1.9.1 17 Stable tag: 1.9.12 8 8 License: GPLv2 or later 9 9 … … 124 124 == Changelog == 125 125 126 = 1.9.12 = 127 * Some security improvements suggested by Wordfence. 128 126 129 = 1.9.11 = 127 130 * Added more error checking in response to some issues reported by Krzysztof Zając. -
wp-video-lightbox/trunk/wp-video-lightbox.php
r3079692 r3266651 2 2 /* 3 3 Plugin Name: WP Video Lightbox 4 Version: 1.9.1 14 Version: 1.9.12 5 5 Plugin URI: https://www.tipsandtricks-hq.com/?p=2700 6 6 Author: Tips and Tricks HQ, Ruhul Amin … … 16 16 class WP_Video_Lightbox 17 17 { 18 var $version = '1.9.1 1';18 var $version = '1.9.12'; 19 19 var $db_version = '1.0'; 20 20 var $plugin_url;
Note: See TracChangeset
for help on using the changeset viewer.