Gallery Bank: WordPress Photo Gallery Plugin - Version 3.1.29

Version Description

Download this release

Release Info

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

Code changes from version 3.1.28 to 3.1.29

Files changed (3) hide show
  1. gallery-bank.php +1 -1
  2. readme.txt +5 -1
  3. views/header.php +16 -12
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.28
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.29
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, best gallery plugin, filterable gallery, gallery decription, gallery image, gallery lightbox, gallery shortcode, image lightbox, image rotate, image slider, image slideshow, lightbox, mosaic, photo albums, photo gallery, photoalbum, responsive gallery, thumbnail view, video gallery, widget gallery, wordpress gallery, wp gallery, gallery bank
4
  Requires at least: 3.4
5
  Tested up to: 4.6
6
- Stable tag: 3.1.28
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -502,6 +502,10 @@ is False in shortcode.
502
 
503
  = 3.1.28 =
504
 
 
 
 
 
505
  * Improved Functionality
506
  * Few Bugs Fixed
507
 
3
  Tags: add album, add gallery, add pictures, best gallery plugin, filterable gallery, gallery decription, gallery image, gallery lightbox, gallery shortcode, image lightbox, image rotate, image slider, image slideshow, lightbox, mosaic, photo albums, photo gallery, photoalbum, responsive gallery, thumbnail view, video gallery, widget gallery, wordpress gallery, wp gallery, gallery bank
4
  Requires at least: 3.4
5
  Tested up to: 4.6
6
+ Stable tag: 3.1.29
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
502
 
503
  = 3.1.28 =
504
 
505
+ * Major Bug Fixed Related to Function Undefined in Header File.
506
+
507
+ = 3.1.28 =
508
+
509
  * Improved Functionality
510
  * Few Bugs Fixed
511
 
views/header.php CHANGED
@@ -119,6 +119,20 @@ else
119
  return $result;
120
  }
121
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  ?>
123
  <div id="welcome-panel" class="welcome-panel" style="padding:0px !important;background-color: #f9f9f9 !important">
124
  <div class="welcome-panel-content">
@@ -383,17 +397,7 @@ else
383
  <?php
384
  }
385
  }
386
- function is_dir_empty($dir)
387
- {
388
- if (!is_readable($dir)) return NULL;
389
- $handle = opendir($dir);
390
- while (false !== ($entry = readdir($handle))) {
391
- if ($entry != "." && $entry != "..") {
392
- return FALSE;
393
- }
394
- }
395
- return TRUE;
396
- }
397
- }
398
  }
399
  ?>
119
  return $result;
120
  }
121
  }
122
+ if(!function_exists("gallery_get_minisize"))
123
+ {
124
+ function is_dir_empty($dir)
125
+ {
126
+ if (!is_readable($dir)) return NULL;
127
+ $handle = opendir($dir);
128
+ while (false !== ($entry = readdir($handle))) {
129
+ if ($entry != "." && $entry != "..") {
130
+ return FALSE;
131
+ }
132
+ }
133
+ return TRUE;
134
+ }
135
+ }
136
  ?>
137
  <div id="welcome-panel" class="welcome-panel" style="padding:0px !important;background-color: #f9f9f9 !important">
138
  <div class="welcome-panel-content">
397
  <?php
398
  }
399
  }
400
+
401
+ }
 
 
 
 
 
 
 
 
 
 
402
  }
403
  ?>