Gallery – Photo Gallery and Images Gallery - Version 2.7.5

Version Description

  • fix of the notices
Download this release

Release Info

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

Code changes from version 2.7.4 to 2.7.5

includes/frontend/extensions/core/roboGalleryCore.php CHANGED
@@ -41,7 +41,7 @@ class roboGalleryCore{
41
  }
42
 
43
 
44
- public function addHTML( $htmlCode, $postion = 'after'){
45
 
46
  switch ($position) {
47
  case 'before':
@@ -57,7 +57,7 @@ class roboGalleryCore{
57
  }
58
 
59
 
60
- public function addCSS( $cssCode, $postion = 'after'){
61
 
62
  switch ($position) {
63
  case 'before':
41
  }
42
 
43
 
44
+ public function addHTML( $htmlCode, $position = 'after'){
45
 
46
  switch ($position) {
47
  case 'before':
57
  }
58
 
59
 
60
+ public function addCSS( $cssCode, $position = 'after'){
61
 
62
  switch ($position) {
63
  case 'before':
includes/options/rbs_gallery_options_copy.php CHANGED
@@ -16,9 +16,9 @@ if ( ! defined( 'ABSPATH' ) ) exit;
16
 
17
  if( isset($_GET['post']) ) $id = (int) $_GET['post'];
18
 
19
- if( !isset($id) && !$id && isset($_POST['post_ID']) ) $id= $_POST['post_ID'];
20
 
21
- if( !$id ) return ;
22
 
23
  if( get_option( ROBO_GALLERY_PREFIX.'cloneBlock', 0 ) && !get_post_meta( $id, ROBO_GALLERY_PREFIX.'options', true ) ){
24
  return ;
16
 
17
  if( isset($_GET['post']) ) $id = (int) $_GET['post'];
18
 
19
+ if( !isset($id) && isset($_POST['post_ID']) ) $id= $_POST['post_ID'];
20
 
21
+ if( !isset($id) || !$id ) return ;
22
 
23
  if( get_option( ROBO_GALLERY_PREFIX.'cloneBlock', 0 ) && !get_post_meta( $id, ROBO_GALLERY_PREFIX.'options', true ) ){
24
  return ;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://robosoft.co/robogallery
4
  Tags: gallery, photo gallery, images gallery, gallery images, wordpress gallery plugin, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.9
7
- Stable tag: 2.7.4
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -259,8 +259,8 @@ If any problem occurs, please contact us.
259
 
260
  == Changelog ==
261
 
262
- = 2.7.4 =
263
- * Fix of the preload for the alternative and force JQuery mode
264
 
265
  = 2.7.3 =
266
  * New ajax preload gallery module
@@ -436,8 +436,8 @@ If any problem occurs, please contact us.
436
 
437
  == Upgrade Notice ==
438
 
439
- = 2.7.4 =
440
- Fix of the preload for the alternative and force JQuery mode
441
 
442
  = 2.7.3 =
443
  New ajax preload gallery module
4
  Tags: gallery, photo gallery, images gallery, gallery images, wordpress gallery plugin, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.9
7
+ Stable tag: 2.7.5
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
259
 
260
  == Changelog ==
261
 
262
+ = 2.7.5 =
263
+ * fix of the notices
264
 
265
  = 2.7.3 =
266
  * New ajax preload gallery module
436
 
437
  == Upgrade Notice ==
438
 
439
+ = 2.7.5 =
440
+ fix of the notices
441
 
442
  = 2.7.3 =
443
  New ajax preload gallery module
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.7.4
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/wordpress-gallery-plugin
9
  License: GPLv3 or later
@@ -15,7 +15,7 @@ if(!defined('WPINC'))die;
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
- define("ROBO_GALLERY_VERSION", '2.7.4');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
 
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.7.5
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/wordpress-gallery-plugin
9
  License: GPLv3 or later
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
+ define("ROBO_GALLERY_VERSION", '2.7.5');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21