Gallery – Photo Gallery and Images Gallery - Version 2.8.31

Version Description

  • Tested with Wordpress 5.4, small code fixes
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 2.8.31
Comparing to
See all releases

Code changes from version 2.8.30 to 2.8.31

app/extensions/dashboard/class.dashboard.php CHANGED
@@ -112,12 +112,12 @@ if ( !class_exists( 'rbsGalleryDashboard' ) ){
112
  foreach ($this->config as $item) {
113
 
114
  $link = '#';
115
- if ( $item['content'] ) {
116
  $link = $this->slug . '&page=' . $this->page_menu .'&tab=' . $item['name'];
117
- } elseif( $item['url'] ) {
118
  $link = $item['url'];
119
  }
120
- if ( $this->active_tab === $item['name'] ) {
121
  $this->active_content = $item['content'];
122
  }
123
  $returnHTML .=
112
  foreach ($this->config as $item) {
113
 
114
  $link = '#';
115
+ if ( isset($item['content']) && $item['content'] ) {
116
  $link = $this->slug . '&page=' . $this->page_menu .'&tab=' . $item['name'];
117
+ } elseif( isset($item['url']) && $item['url'] ) {
118
  $link = $item['url'];
119
  }
120
+ if ( isset($item['name']) && $this->active_tab === $item['name'] ) {
121
  $this->active_content = $item['content'];
122
  }
123
  $returnHTML .=
includes/rbs_gallery_edit.php CHANGED
@@ -26,7 +26,6 @@ function rbs_gallery_group_metabox() {
26
  rbs_gallery_include( array(
27
  'cache.php',
28
  'rbs_gallery_options_images.php',
29
-
30
  'voting.php',
31
  'rbs_gallery_options_guides.php',
32
  ), ROBO_GALLERY_OPTIONS_PATH);
@@ -35,7 +34,6 @@ function rbs_gallery_group_metabox() {
35
  rbs_gallery_include( array(
36
  'rbs_gallery_options_shortcode.php',
37
  'rbs_gallery_options_tools.php',
38
-
39
  ), ROBO_GALLERY_OPTIONS_PATH);
40
  }
41
  rbs_gallery_include( array(
@@ -52,7 +50,6 @@ function rbs_gallery_group_metabox() {
52
  'rbs_gallery_options_loading.php',
53
  'rbs_gallery_options_polaroid.php',
54
  'rbs_gallery_options_lightbox.php',
55
-
56
  'rbs_gallery_options_css.php',
57
  ), ROBO_GALLERY_OPTIONS_PATH);
58
 
26
  rbs_gallery_include( array(
27
  'cache.php',
28
  'rbs_gallery_options_images.php',
 
29
  'voting.php',
30
  'rbs_gallery_options_guides.php',
31
  ), ROBO_GALLERY_OPTIONS_PATH);
34
  rbs_gallery_include( array(
35
  'rbs_gallery_options_shortcode.php',
36
  'rbs_gallery_options_tools.php',
 
37
  ), ROBO_GALLERY_OPTIONS_PATH);
38
  }
39
  rbs_gallery_include( array(
50
  'rbs_gallery_options_loading.php',
51
  'rbs_gallery_options_polaroid.php',
52
  'rbs_gallery_options_lightbox.php',
 
53
  'rbs_gallery_options_css.php',
54
  ), ROBO_GALLERY_OPTIONS_PATH);
55
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: gallerysupport, robosoft
3
  Donate link: https://robosoft.co/robogallery
4
  Tags: gallery, photo gallery, image gallery, wordpress gallery plugin, responsive gallery
5
  Requires at least: 3.3
6
- Tested up to: 5.3
7
- Stable tag: 2.8.30
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -209,6 +209,9 @@ If any problem occurs, please contact us.
209
 
210
  == Changelog ==
211
 
 
 
 
212
  = 2.8.30 =
213
  * Cache fixing
214
 
@@ -536,6 +539,9 @@ If any problem occurs, please contact us.
536
 
537
  == Upgrade Notice ==
538
 
 
 
 
539
  = 2.8.30 =
540
  Cache fixing
541
 
3
  Donate link: https://robosoft.co/robogallery
4
  Tags: gallery, photo gallery, image gallery, wordpress gallery plugin, responsive gallery
5
  Requires at least: 3.3
6
+ Tested up to: 5.4
7
+ Stable tag: 2.8.31
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
209
 
210
  == Changelog ==
211
 
212
+ = 2.8.31 =
213
+ * Tested with Wordpress 5.4, small code fixes
214
+
215
  = 2.8.30 =
216
  * Cache fixing
217
 
539
 
540
  == Upgrade Notice ==
541
 
542
+ = 2.8.31 =
543
+ Tested with Wordpress 5.4, small code fixes
544
+
545
  = 2.8.30 =
546
  Cache fixing
547
 
robogallery.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Robo Gallery
4
  Plugin URI: https://robosoft.co/wordpress-gallery-plugin
5
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
6
- Version: 2.8.30
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/wordpress-gallery-plugin
9
  License: GPLv3 or later
@@ -14,7 +14,7 @@ Domain Path: /languages
14
  if(!defined('WPINC'))die;
15
 
16
  define("ROBO_GALLERY", 1);
17
- define("ROBO_GALLERY_VERSION", '2.8.30');
18
 
19
  define("ROBO_GALLERY_OPTIONS", 'rbs_opt_');
20
 
3
  Plugin Name: Robo Gallery
4
  Plugin URI: https://robosoft.co/wordpress-gallery-plugin
5
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
6
+ Version: 2.8.31
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/wordpress-gallery-plugin
9
  License: GPLv3 or later
14
  if(!defined('WPINC'))die;
15
 
16
  define("ROBO_GALLERY", 1);
17
+ define("ROBO_GALLERY_VERSION", '2.8.31');
18
 
19
  define("ROBO_GALLERY_OPTIONS", 'rbs_opt_');
20