Gallery Bank: WordPress Photo Gallery Plugin - Version 3.0.36

Version Description

Download this release

Release Info

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

Code changes from version 3.0.35 to 3.0.36

assets/images/img.png CHANGED
Binary file
gallery-bank.php CHANGED
@@ -4,7 +4,7 @@
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.0.35
8
  Author URI: http://tech-banker.com
9
  */
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.0.36
8
  Author URI: http://tech-banker.com
9
  */
10
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker,Gallery-Bank
3
  Tags: admin, AJAX, album, albums, best gallery plugin, best portfolio plugin, comments, easy media gallery, filterable gallery, filterable portfolio, flash, foto, fotoalbum, gallery, gallery album, gallery bank, gallery image, gallery wordpress plugin, grid gallery, image, image album, image slider, images, lightbox, links, media, modal, multiple pictures, nextgen, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photo gallery, Photo Slider, photoalbum, photogallery, photos, picture, pictures, plugin, portfolio, portfolio gallery, portfolio wordpress plugin, Post, posts, responsive gallery, seo image, sidebar, slideshow, thumbnails, videos, website gallery, widget, wordpress gallery plugin, wordpress portfolio plugin, wp gallery, wp gallery plugin
4
  Requires at least: 3.3
5
  Tested up to: 3.9.1
6
- Stable tag: 3.0.35
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -48,7 +48,7 @@ It provides a powerful engine for uploading and managing galleries of images & v
48
 
49
  Gallery Bank is designed to adapt each portfolio to any situation and can be easily used on mobiles as it is a Responsive Plugin.
50
 
51
- ***June 5, 2014: We're happy to announce that Gallery Bank reached 134,400+ plugin downloads in only 12 months. We frequently receive positive feedback from people using our Gallery Bank Plugin for WordPress. Thanks so much for your support!***
52
 
53
  <a href="http://tech-banker.com/forum/gallery-bank-support/" target="_blank">Support Desk - feel free to ask your Queries</a>
54
 
@@ -480,11 +480,14 @@ is False in shortcode.
480
  16. Displaying List Album with Images.
481
  17. Displaying Individual Album with Images.
482
 
483
-
484
  == Changelog ==
485
 
486
  = 3.0.35 =
487
 
 
 
 
 
488
  * Major Security Bug Fixed related to Upload.php file
489
 
490
  = 3.0.34 =
3
  Tags: admin, AJAX, album, albums, best gallery plugin, best portfolio plugin, comments, easy media gallery, filterable gallery, filterable portfolio, flash, foto, fotoalbum, gallery, gallery album, gallery bank, gallery image, gallery wordpress plugin, grid gallery, image, image album, image slider, images, lightbox, links, media, modal, multiple pictures, nextgen, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photo gallery, Photo Slider, photoalbum, photogallery, photos, picture, pictures, plugin, portfolio, portfolio gallery, portfolio wordpress plugin, Post, posts, responsive gallery, seo image, sidebar, slideshow, thumbnails, videos, website gallery, widget, wordpress gallery plugin, wordpress portfolio plugin, wp gallery, wp gallery plugin
4
  Requires at least: 3.3
5
  Tested up to: 3.9.1
6
+ Stable tag: 3.0.36
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
48
 
49
  Gallery Bank is designed to adapt each portfolio to any situation and can be easily used on mobiles as it is a Responsive Plugin.
50
 
51
+ ***June 7, 2014: We're happy to announce that Gallery Bank reached 135,700+ plugin downloads in only 12 months. We frequently receive positive feedback from people using our Gallery Bank Plugin for WordPress. Thanks so much for your support!***
52
 
53
  <a href="http://tech-banker.com/forum/gallery-bank-support/" target="_blank">Support Desk - feel free to ask your Queries</a>
54
 
480
  16. Displaying List Album with Images.
481
  17. Displaying Individual Album with Images.
482
 
 
483
  == Changelog ==
484
 
485
  = 3.0.35 =
486
 
487
+ * Bug Fixed related to Saving of Albums
488
+
489
+ = 3.0.35 =
490
+
491
  * Major Security Bug Fixed related to Upload.php file
492
 
493
  = 3.0.34 =
views/edit-album.php CHANGED
@@ -466,10 +466,10 @@ if (count($album_css) != 0)
466
 
467
  controlType = jQuery(value.cells[1]).find("img").attr("type");
468
  picId = jQuery(value.cells[1]).find("img").attr("imageId");
469
- img_gb_path = jQuery(value.cells[1]).find("img").attr("imgpath");
470
  isAlbumCoverSet = jQuery(value.cells[1]).find("input:radio").attr("checked");
471
- title = jQuery(value.cells[2]).find("input:text").eq(0).val();
472
- description = jQuery(value.cells[2]).find("textarea").eq(0).val();
473
  tags = jQuery(value.cells[3]).find("input:text").eq(0).val();
474
  urlRedirect = jQuery(value.cells[4]).find("input:text").eq(0).val();
475
 
466
 
467
  controlType = jQuery(value.cells[1]).find("img").attr("type");
468
  picId = jQuery(value.cells[1]).find("img").attr("imageId");
469
+ img_gb_path = encodeURIComponent(jQuery(value.cells[1]).find("img").attr("imgpath"));
470
  isAlbumCoverSet = jQuery(value.cells[1]).find("input:radio").attr("checked");
471
+ title = encodeURIComponent(jQuery(value.cells[2]).find("input:text").eq(0).val());
472
+ description = encodeURIComponent(jQuery(value.cells[2]).find("textarea").eq(0).val());
473
  tags = jQuery(value.cells[3]).find("input:text").eq(0).val();
474
  urlRedirect = jQuery(value.cells[4]).find("input:text").eq(0).val();
475