Gallery Bank: WordPress Photo Gallery Plugin - Version 3.1.22

Version Description

  • Major Cross Site Scripting Security Issue Fix
  • Few Bugs Fixed
Download this release

Release Info

Developer contact-banker
Plugin Icon 128x128 Gallery Bank: WordPress Photo Gallery Plugin
Version 3.1.22
Comparing to
See all releases

Code changes from version 3.1.21 to 3.1.22

assets/css/system-message.css CHANGED
@@ -36,7 +36,7 @@
36
 
37
  .custom-message.green {
38
  display: block;
39
- background: url(../images/icons/icon-succes.png) no-repeat 1px 8px #EBF9E2;
40
  border: 1px solid #BEE4A5;
41
  color: #6aa500;
42
  }
36
 
37
  .custom-message.green {
38
  display: block;
39
+ background: url(../images/icons/icon-success.png) no-repeat 1px 8px #EBF9E2;
40
  border: 1px solid #BEE4A5;
41
  color: #6aa500;
42
  }
gallery-bank.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Bank Lite Edition
4
  Plugin URI: http://tech-banker.com
5
  Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
6
  Author: Tech Banker
7
- Version: 3.1.21
8
  Author URI: http://tech-banker.com
9
  License: GPLv3 or later
10
  */
4
  Plugin URI: http://tech-banker.com
5
  Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
6
  Author: Tech Banker
7
+ Version: 3.1.22
8
  Author URI: http://tech-banker.com
9
  License: GPLv3 or later
10
  */
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Gallery-Bank,contact-banker
3
  Tags: add album, add gallery, add pictures, admin, AJAX, album, best gallery, best gallery plugin, Facebook, filterable gallery, foto, fotoalbum, fotogalerie, free photo gallery, fullscreen gallery, fullscreen slider, galeri, galerie, Galleria, galleries, gallery, gallery decription, gallery image, gallery lightbox, gallery shortcode, gallery slider, image, image album, image gallery, image lightbox, image rotate, image slider, image slideshow, images, images gallery, instagram, jquery, jquery gallery, lightbox, media, mosaic, multiple pictures, photo, photo album, photo albums, photo gallery, photoalbum, photogallery, photography, photos, photoset, picture, pictures, responsive, responsive gallery, responsive wordpress photo gallery, sidebar, Simple gallery, slide, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, upload images, upload photos, video gallery, videos, view images, view pictures, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugins, youtube, gallery bank
4
  Requires at least: 3.4
5
  Tested up to: 4.5.3
6
- Stable tag: 3.1.21
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -500,6 +500,11 @@ is False in shortcode.
500
 
501
  == Changelog ==
502
 
 
 
 
 
 
503
  = 3.1.21 =
504
 
505
  * Few Bugs Fixed
3
  Tags: add album, add gallery, add pictures, admin, AJAX, album, best gallery, best gallery plugin, Facebook, filterable gallery, foto, fotoalbum, fotogalerie, free photo gallery, fullscreen gallery, fullscreen slider, galeri, galerie, Galleria, galleries, gallery, gallery decription, gallery image, gallery lightbox, gallery shortcode, gallery slider, image, image album, image gallery, image lightbox, image rotate, image slider, image slideshow, images, images gallery, instagram, jquery, jquery gallery, lightbox, media, mosaic, multiple pictures, photo, photo album, photo albums, photo gallery, photoalbum, photogallery, photography, photos, photoset, picture, pictures, responsive, responsive gallery, responsive wordpress photo gallery, sidebar, Simple gallery, slide, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, upload images, upload photos, video gallery, videos, view images, view pictures, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugins, youtube, gallery bank
4
  Requires at least: 3.4
5
  Tested up to: 4.5.3
6
+ Stable tag: 3.1.22
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
500
 
501
  == Changelog ==
502
 
503
+ = 3.1.22 =
504
+
505
+ * Major Cross Site Scripting Security Issue Fix
506
+ * Few Bugs Fixed
507
+
508
  = 3.1.21 =
509
 
510
  * Few Bugs Fixed
views/dashboard.php CHANGED
@@ -476,7 +476,7 @@
476
  //noinspection JSUnresolvedVariable
477
  jQuery.post(ajaxurl, "album_id="+album_id+"&param=Delete_album&action=add_new_album_library", function()
478
  {
479
- var check_page = "<?php echo $_REQUEST["page"]; ?>";
480
  window.location.href = "admin.php?page="+check_page;
481
  });
482
  }
476
  //noinspection JSUnresolvedVariable
477
  jQuery.post(ajaxurl, "album_id="+album_id+"&param=Delete_album&action=add_new_album_library", function()
478
  {
479
+ var check_page = "<?php echo isset($_GET["page"]) ? esc_attr($_GET["page"]) : ""; ?>";
480
  window.location.href = "admin.php?page="+check_page;
481
  });
482
  }