Image Photo Gallery Final Tiles Grid - Version 3.3.36

Version Description

  • [Enhancement] PHP 7.1 compatibility
Download this release

Release Info

Developer GreenTreeLabs
Plugin Icon 128x128 Image Photo Gallery Final Tiles Grid
Version 3.3.36
Comparing to
See all releases

Code changes from version 3.3.35 to 3.3.36

Files changed (2) hide show
  1. FinalTilesGalleryLite.php +7 -5
  2. readme.txt +7 -1
FinalTilesGalleryLite.php CHANGED
@@ -5,15 +5,17 @@
5
  * Plugin URI: https://www.final-tiles-gallery.com
6
  * Description: Wordpress Plugin for creating responsive image galleries. By: GreenTreeLabs
7
  * Author: Green Tree Labs
8
- * Version: 3.3.35
9
  * Author URI: https://www.greentreelabs.net
10
  *
11
  * @fs_premium_only /lightbox-pro/
12
  *
13
  */
14
- define( "FTGVERSION", "3.3.35" );
15
  /*
16
  Changelog:
 
 
17
  3.3.35
18
  Updated Freemius library
19
  3.3.34
@@ -782,7 +784,7 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
782
  $g['name'] .= " (copy)";
783
  $this->FinalTilesdb->addGallery( $g );
784
  $id = $this->FinalTilesdb->getNewGalleryId();
785
- $images = $this->FinalTilesdb->getImagesByGalleryId( $sourceId );
786
  foreach ( $images as &$image ) {
787
  $image->Id = null;
788
  $image->gid = $id;
@@ -1139,7 +1141,7 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
1139
 
1140
  if ( check_admin_referer( 'finaltilesgallery', 'finaltilesgallery' ) ) {
1141
  $gid = intval( $_POST["gallery"] );
1142
- $images = $this->FinalTilesdb->getImagesByGalleryId( $gid );
1143
  $FinalTilesGallery = new FinalTilesGallery( $gid, $this->FinalTilesdb, $this->defaultValues );
1144
  echo $FinalTilesGallery->images_markup() ;
1145
  }
@@ -1258,7 +1260,7 @@ if ( !class_exists( 'FinalTiles_Gallery' ) ) {
1258
 
1259
  if ( check_admin_referer( 'FinalTiles_gallery', 'FinalTiles_gallery' ) ) {
1260
  $gid = intval( $_POST["gid"] );
1261
- $imageResults = $this->FinalTilesdb->getImagesByGalleryId( $gid );
1262
  $gallery = $this->FinalTilesdb->getGalleryById( $gid );
1263
  $list_size = "medium";
1264
  $column_size = "s6 m3 l3";
5
  * Plugin URI: https://www.final-tiles-gallery.com
6
  * Description: Wordpress Plugin for creating responsive image galleries. By: GreenTreeLabs
7
  * Author: Green Tree Labs
8
+ * Version: 3.3.36
9
  * Author URI: https://www.greentreelabs.net
10
  *
11
  * @fs_premium_only /lightbox-pro/
12
  *
13
  */
14
+ define( "FTGVERSION", "3.3.36" );
15
  /*
16
  Changelog:
17
+ 3.3.36
18
+ PHP 7.1 compatibility
19
  3.3.35
20
  Updated Freemius library
21
  3.3.34
784
  $g['name'] .= " (copy)";
785
  $this->FinalTilesdb->addGallery( $g );
786
  $id = $this->FinalTilesdb->getNewGalleryId();
787
+ $images = $this->FinalTilesdb->getImagesByGalleryId( $sourceId, 0, 0 );
788
  foreach ( $images as &$image ) {
789
  $image->Id = null;
790
  $image->gid = $id;
1141
 
1142
  if ( check_admin_referer( 'finaltilesgallery', 'finaltilesgallery' ) ) {
1143
  $gid = intval( $_POST["gallery"] );
1144
+ $images = $this->FinalTilesdb->getImagesByGalleryId( $gid, 0, 0 );
1145
  $FinalTilesGallery = new FinalTilesGallery( $gid, $this->FinalTilesdb, $this->defaultValues );
1146
  echo $FinalTilesGallery->images_markup() ;
1147
  }
1260
 
1261
  if ( check_admin_referer( 'FinalTiles_gallery', 'FinalTiles_gallery' ) ) {
1262
  $gid = intval( $_POST["gid"] );
1263
+ $imageResults = $this->FinalTilesdb->getImagesByGalleryId( $gid, 0, 0 );
1264
  $gallery = $this->FinalTilesdb->getGalleryById( $gid );
1265
  $list_size = "medium";
1266
  $column_size = "s6 m3 l3";
readme.txt CHANGED
@@ -1,6 +1,6 @@
1
  === Image Photo Gallery Final Tiles Grid ===
2
  Contributors: GreenTreeLabs
3
- Donate link: http://greentreelabs.net/blog/donate/
4
  Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
5
  Requires at least: 3.8.2
6
  Tested up to: 4.9.2
@@ -135,6 +135,9 @@ Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, M
135
 
136
  == Changelog ==
137
 
 
 
 
138
  = 3.3.35 =
139
  * [Enhancement] Updated Freemius library
140
 
@@ -265,6 +268,9 @@ Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, M
265
 
266
  == Upgrade Notice ==
267
 
 
 
 
268
  = 3.3.34 =
269
  * [Fix] Fixed lightbox skipping images bug
270
 
1
  === Image Photo Gallery Final Tiles Grid ===
2
  Contributors: GreenTreeLabs
3
+ Donate link: http://amzn.eu/5SP6qpj
4
  Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
5
  Requires at least: 3.8.2
6
  Tested up to: 4.9.2
135
 
136
  == Changelog ==
137
 
138
+ = 3.3.36 =
139
+ * [Enhancement] PHP 7.1 compatibility
140
+
141
  = 3.3.35 =
142
  * [Enhancement] Updated Freemius library
143
 
268
 
269
  == Upgrade Notice ==
270
 
271
+ = 3.3.36 =
272
+ * [Enhancement] PHP 7.1 compatibility
273
+
274
  = 3.3.34 =
275
  * [Fix] Fixed lightbox skipping images bug
276