NextGEN Gallery – WordPress Gallery Plugin - Version 3.3.5

Version Description

  • 04.09.2020 =
  • Fixed: Broken dynamic images
Download this release

Release Info

Developer photocrati
Plugin Icon 128x128 NextGEN Gallery – WordPress Gallery Plugin
Version 3.3.5
Comparing to
See all releases

Code changes from version 3.3.2 to 3.3.5

changelog.txt CHANGED
@@ -1,6 +1,9 @@
1
  NextGEN Gallery
2
  by Imagely
3
 
 
 
 
4
  = V3.3.2 - 04.07.2020 =
5
  * Fixed: Gallery paths were calculated incorrectly on wordpress.com hosting
6
  * Fixed: Insert Gallery Window could not edit an existing displayed gallery with a legacy template without breaking the displayed gallery
1
  NextGEN Gallery
2
  by Imagely
3
 
4
+ = V3.3.5 - 04.09.2020 =
5
+ * Fixed: Broken dynamic images
6
+
7
  = V3.3.2 - 04.07.2020 =
8
  * Fixed: Gallery paths were calculated incorrectly on wordpress.com hosting
9
  * Fixed: Insert Gallery Window could not edit an existing displayed gallery with a legacy template without breaking the displayed gallery
nggallery.php CHANGED
@@ -4,7 +4,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
4
  /**
5
  * Plugin Name: NextGEN Gallery
6
  * Description: The most popular gallery plugin for WordPress and one of the most popular plugins of all time with over 28 million downloads.
7
- * Version: 3.3.2
8
  * Author: Imagely
9
  * Plugin URI: https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/
10
  * Author URI: https://www.imagely.com
@@ -713,7 +713,7 @@ class C_NextGEN_Bootstrap
713
  define('NGG_PRODUCT_URL', path_join(str_replace("\\" , '/', NGG_PLUGIN_URL), 'products'));
714
  define('NGG_MODULE_URL', path_join(str_replace("\\", '/', NGG_PRODUCT_URL), 'photocrati_nextgen/modules'));
715
  define('NGG_PLUGIN_STARTED_AT', microtime());
716
- define('NGG_PLUGIN_VERSION', '3.3.2');
717
 
718
  define(
719
  'NGG_SCRIPT_VERSION',
4
  /**
5
  * Plugin Name: NextGEN Gallery
6
  * Description: The most popular gallery plugin for WordPress and one of the most popular plugins of all time with over 28 million downloads.
7
+ * Version: 3.3.5
8
  * Author: Imagely
9
  * Plugin URI: https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/
10
  * Author URI: https://www.imagely.com
713
  define('NGG_PRODUCT_URL', path_join(str_replace("\\" , '/', NGG_PLUGIN_URL), 'products'));
714
  define('NGG_MODULE_URL', path_join(str_replace("\\", '/', NGG_PRODUCT_URL), 'photocrati_nextgen/modules'));
715
  define('NGG_PLUGIN_STARTED_AT', microtime());
716
+ define('NGG_PLUGIN_VERSION', '3.3.5');
717
 
718
  define(
719
  'NGG_SCRIPT_VERSION',
products/photocrati_nextgen/modules/fs/module.fs.php CHANGED
@@ -19,7 +19,7 @@ class M_Fs extends C_Base_Module
19
  'photocrati-fs',
20
  'Filesystem',
21
  'Provides a filesystem abstraction layer for Pope modules',
22
- '3.3.2',
23
  'https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/',
24
  'Imagely',
25
  'https://www.imagely.com'
19
  'photocrati-fs',
20
  'Filesystem',
21
  'Provides a filesystem abstraction layer for Pope modules',
22
+ '3.1.8',
23
  'https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/',
24
  'Imagely',
25
  'https://www.imagely.com'
products/photocrati_nextgen/modules/fs/package.module.fs.php CHANGED
@@ -34,13 +34,7 @@ class C_Fs extends C_Component
34
  function initialize()
35
  {
36
  parent::initialize();
37
- // Special hack for wordpress.com hosted accounts where ABSPATH is outside the DOCUMENT_ROOT
38
- if (!empty($_SERVER['DOCUMENT_ROOT']) && strpos(ABSPATH, $_SERVER['DOCUMENT_ROOT']) === FALSE) {
39
- $root = $_SERVER['DOCUMENT_ROOT'];
40
- } else {
41
- $root = ABSPATH;
42
- }
43
- $this->_document_root = $this->set_document_root($root);
44
  }
45
  }
46
  class Mixin_Fs_Instance_Methods extends Mixin
34
  function initialize()
35
  {
36
  parent::initialize();
37
+ $this->_document_root = $this->set_document_root(ABSPATH);
 
 
 
 
 
 
38
  }
39
  }
40
  class Mixin_Fs_Instance_Methods extends Mixin
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: photocrati, imagely
3
  Tags: wordpress gallery plugin, gallery, nextgen, nextgen gallery, photo gallery, image gallery, photography, slideshow, images, photo, photo album, watermark
4
  Requires at least: 4.0.0
5
- Stable tag: 3.3.2
6
  Tested up to: 5.4.0
7
  License: GPLv2
8
  Requires PHP: 5.4
@@ -180,6 +180,9 @@ For more information, feel free to visit the official website for the NextGEN Ga
180
 
181
  == Changelog ==
182
 
 
 
 
183
  = V3.3.2 - 04.07.2020 =
184
  * Fixed: Gallery paths were calculated incorrectly on wordpress.com hosting
185
  * Fixed: Insert Gallery Window could not edit an existing displayed gallery with a legacy template without breaking the displayed gallery
2
  Contributors: photocrati, imagely
3
  Tags: wordpress gallery plugin, gallery, nextgen, nextgen gallery, photo gallery, image gallery, photography, slideshow, images, photo, photo album, watermark
4
  Requires at least: 4.0.0
5
+ Stable tag: 3.3.5
6
  Tested up to: 5.4.0
7
  License: GPLv2
8
  Requires PHP: 5.4
180
 
181
  == Changelog ==
182
 
183
+ = V3.3.5 - 04.09.2020 =
184
+ * Fixed: Broken dynamic images
185
+
186
  = V3.3.2 - 04.07.2020 =
187
  * Fixed: Gallery paths were calculated incorrectly on wordpress.com hosting
188
  * Fixed: Insert Gallery Window could not edit an existing displayed gallery with a legacy template without breaking the displayed gallery