Gallery Bank: WordPress Photo Gallery Plugin - Version 3.1.21

Version Description

  • Few Bugs Fixed
Download this release

Release Info

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

Code changes from version 3.1.20 to 3.1.21

Files changed (3) hide show
  1. gallery-bank.php +1 -1
  2. readme.txt +5 -1
  3. views/header.php +9 -4
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.20
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.21
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.20
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -500,6 +500,10 @@ is False in shortcode.
500
 
501
  == Changelog ==
502
 
 
 
 
 
503
  = 3.1.20 =
504
 
505
  * Strings Updated
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
 
501
  == Changelog ==
502
 
503
+ = 3.1.21 =
504
+
505
+ * Few Bugs Fixed
506
+
507
  = 3.1.20 =
508
 
509
  * Strings Updated
views/header.php CHANGED
@@ -183,14 +183,18 @@ if(!function_exists("gallery_get_minisize"))
183
  </div>
184
  </div>
185
  </div>
 
 
 
 
186
  <script>
187
  jQuery(document).ready(function()
188
  {
189
- jQuery(".nav-tab-wrapper > a#<?php echo $_REQUEST["page"];?>").addClass("nav-tab-active");
190
  });
191
  </script>
192
- <?php
193
- switch($_REQUEST["page"])
194
  {
195
  case "gallery_bank":
196
  $page = "Dashboard";
@@ -313,7 +317,7 @@ switch ($gb_role)
313
  <?php
314
  break;
315
  }
316
- if($_REQUEST["page"] != "gallery_bank_feature_request")
317
  {
318
  ?>
319
  <div class="custom-message green" style="display: block;margin-top:30px">
@@ -371,4 +375,5 @@ function is_dir_empty($dir)
371
  }
372
  return TRUE;
373
  }
 
374
  ?>
183
  </div>
184
  </div>
185
  </div>
186
+ <?php
187
+ if(isset($_GET["page"]))
188
+ {
189
+ ?>
190
  <script>
191
  jQuery(document).ready(function()
192
  {
193
+ jQuery(".nav-tab-wrapper > a#<?php echo esc_attr($_GET["page"]);?>").addClass("nav-tab-active");
194
  });
195
  </script>
196
+ <?php
197
+ switch(esc_attr($_GET["page"]))
198
  {
199
  case "gallery_bank":
200
  $page = "Dashboard";
317
  <?php
318
  break;
319
  }
320
+ if(esc_attr($_GET["page"]) != "gallery_bank_feature_request")
321
  {
322
  ?>
323
  <div class="custom-message green" style="display: block;margin-top:30px">
375
  }
376
  return TRUE;
377
  }
378
+ }
379
  ?>