Changeset 3149367
- Timestamp:
- 09/10/2024 04:55:34 PM (15 months ago)
- Location:
- photo-gallery/trunk
- Files:
-
- 5 edited
-
frontend/views/BWGViewAlbum_compact_preview.php (modified) (1 diff)
-
frontend/views/BWGViewThumbnails.php (modified) (1 diff)
-
frontend/views/BWGViewThumbnails_masonry.php (modified) (1 diff)
-
photo-gallery.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
photo-gallery/trunk/frontend/views/BWGViewAlbum_compact_preview.php
r2823007 r3149367 96 96 $href = $this->http_strip_query_param($href, 'bwg_search_' . $bwg); 97 97 $href = $this->http_strip_query_param($href, 'page_number_' . $bwg); 98 $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($row->name ? htmlspecialchars_decode($row->name, ENT_COMPAT | ENT_QUOTES) : ' ') . '</div></div>';98 $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($row->name ? wp_kses_post(htmlspecialchars_decode($row->name, ENT_COMPAT | ENT_QUOTES)) : ' ') . '</div></div>'; 99 99 $resolution_thumb = $row->resolution_thumb; 100 100 $image_thumb_width = ''; -
photo-gallery/trunk/frontend/views/BWGViewThumbnails.php
r2750908 r3149367 38 38 $data_image_id = ''; 39 39 $href = ''; 40 $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($image_row->alt ? htmlspecialchars_decode($image_row->alt, ENT_COMPAT | ENT_QUOTES) : ' ') . '</div></div>';41 $description = '<div class="bwg-thumb-description bwg_thumb_description_0"><span>' . ($image_row->description ? htmlspecialchars_decode($image_row->description, ENT_COMPAT | ENT_QUOTES) : '') . '</span></div>';40 $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($image_row->alt ? wp_kses_post(htmlspecialchars_decode($image_row->alt, ENT_COMPAT | ENT_QUOTES)) : ' ') . '</div></div>'; 41 $description = '<div class="bwg-thumb-description bwg_thumb_description_0"><span>' . ($image_row->description ? wp_kses_post(htmlspecialchars_decode($image_row->description, ENT_COMPAT | ENT_QUOTES)) : '') . '</span></div>'; 42 42 $play_icon = '<div class="bwg-play-icon1"><i title="' . __('Play', 'photo-gallery') . '" class="bwg-icon-play bwg-title2 bwg-play-icon2"></i></div>'; 43 43 $ecommerce_icon = '<div class="bwg-ecommerce1"><div class="bwg-ecommerce2">'; -
photo-gallery/trunk/frontend/views/BWGViewThumbnails_masonry.php
r2764916 r3149367 48 48 $data_image_id = ''; 49 49 $href = ''; 50 $title = '<div class="bwg-title1"><div class="bwg-title2">' . htmlspecialchars_decode($image_row->alt, ENT_COMPAT | ENT_QUOTES) . '</div></div>';50 $title = '<div class="bwg-title1"><div class="bwg-title2">' . wp_kses_post(htmlspecialchars_decode($image_row->alt, ENT_COMPAT | ENT_QUOTES)) . '</div></div>'; 51 51 $play_icon = '<div class="bwg-play-icon1"><i title="' . __('Play', 'photo-gallery') . '" class="bwg-icon-play bwg-title2 bwg-play-icon2"></i></div>'; 52 52 $ecommerce_icon = '<div class="bwg-ecommerce1"><div class="bwg-ecommerce2">'; -
photo-gallery/trunk/photo-gallery.php
r3114481 r3149367 4 4 * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin 5 5 * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags. 6 * Version: 1.8.2 76 * Version: 1.8.28 7 7 * Author: Photo Gallery Team 8 8 * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin … … 109 109 $this->front_url = $this->plugin_url; 110 110 $this->main_file = plugin_basename(__FILE__); 111 $this->plugin_version = '1.8.2 7';112 $this->db_version = '1.8.2 7';111 $this->plugin_version = '1.8.28'; 112 $this->db_version = '1.8.28'; 113 113 $this->prefix = 'bwg'; 114 114 $this->nicename = __('Photo Gallery', 'photo-gallery'); -
photo-gallery/trunk/readme.txt
r3147190 r3149367 4 4 Requires at least: 4.6 5 5 Tested up to: 6.6 6 Stable tag: 1.8.2 76 Stable tag: 1.8.28 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 273 273 274 274 == Changelog == 275 276 = 1.8.28 = 277 * Fixed: Security fix. 275 278 276 279 = 1.8.27 =
Note: See TracChangeset
for help on using the changeset viewer.