Version Description
security issue fixed in filemanager
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.2.13 |
Comparing to | |
See all releases |
Code changes from version 1.2.12 to 1.2.13
- filemanager/view.php +6 -0
- photo-gallery.php +1 -1
- readme.txt +4 -1
filemanager/view.php
CHANGED
@@ -190,6 +190,9 @@ class FilemanagerView {
|
|
190 |
<div id="explorer_body">
|
191 |
<?php
|
192 |
foreach ($file_manager_data['files'] as $file) {
|
|
|
|
|
|
|
193 |
?>
|
194 |
<div class="explorer_item" draggable="true"
|
195 |
name="<?php echo $file['name']; ?>"
|
@@ -274,6 +277,9 @@ class FilemanagerView {
|
|
274 |
<div id="importer_body">
|
275 |
<?php
|
276 |
foreach ($file_manager_data['media_library_files'] as $file) {
|
|
|
|
|
|
|
277 |
?>
|
278 |
<div class="importer_item" draggable="true"
|
279 |
name="<?php echo $file['name']; ?>"
|
190 |
<div id="explorer_body">
|
191 |
<?php
|
192 |
foreach ($file_manager_data['files'] as $file) {
|
193 |
+
$file['name']=esc_html($file['name']);
|
194 |
+
$file['filename']=esc_html($file['filename']);
|
195 |
+
$file['thumb']=esc_html($file['thumb']);
|
196 |
?>
|
197 |
<div class="explorer_item" draggable="true"
|
198 |
name="<?php echo $file['name']; ?>"
|
277 |
<div id="importer_body">
|
278 |
<?php
|
279 |
foreach ($file_manager_data['media_library_files'] as $file) {
|
280 |
+
$file['name']=esc_html($file['name']);
|
281 |
+
$file['filename']=esc_html($file['filename']);
|
282 |
+
$file['thumb']=esc_html($file['thumb']);
|
283 |
?>
|
284 |
<div class="importer_item" draggable="true"
|
285 |
name="<?php echo $file['name']; ?>"
|
photo-gallery.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: http://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
6 |
* 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.
|
7 |
-
* Version: 1.2.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: http://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
6 |
* 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.
|
7 |
+
* Version: 1.2.13
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
|
4 |
Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -179,6 +179,9 @@ After downloading the ZIP file,
|
|
179 |
|
180 |
== Changelog ==
|
181 |
|
|
|
|
|
|
|
182 |
= 1.2.12 =
|
183 |
Front-end image sorting possibility (dropdown) for the users
|
184 |
|
4 |
Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 1.2.13
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
179 |
|
180 |
== Changelog ==
|
181 |
|
182 |
+
= 1.2.13 =
|
183 |
+
security issue fixed in filemanager
|
184 |
+
|
185 |
= 1.2.12 =
|
186 |
Front-end image sorting possibility (dropdown) for the users
|
187 |
|