WPGlobus – Multilingual Everything! - Version 2.3.5

Version Description

  • (Core/Builders) Fixed the Undefined offset PHP Notice in the is_gutenberg() method.
Download this release

Release Info

Developer tivnet
Plugin Icon 128x128 WPGlobus – Multilingual Everything!
Version 2.3.5
Comparing to
See all releases

Code changes from version 2.3.4 to 2.3.5

includes/builders/class-wpglobus-builders.php CHANGED
@@ -744,9 +744,12 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
744
  /**
745
  * @todo @see https://wpglobus.freshdesk.com/a/tickets/4103
746
  */
747
-
 
 
 
748
  $_continue = false;
749
- if ( 0 !== (int) $post_id ) {
750
 
751
  $GLOBALS['WPGlobus']['builder'] = 'gutenberg';
752
  $GLOBALS['WPGlobus']['context'] = $context;
744
  /**
745
  * @todo @see https://wpglobus.freshdesk.com/a/tickets/4103
746
  */
747
+
748
+ /**
749
+ * @since 2.3.5 Added checking $_request_uri[4].
750
+ */
751
  $_continue = false;
752
+ if ( 0 !== (int) $post_id && ! empty($_request_uri[4]) ) {
753
 
754
  $GLOBALS['WPGlobus']['builder'] = 'gutenberg';
755
  $GLOBALS['WPGlobus']['context'] = $context;
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2020 WPGlobus 2.3.4
2
- # This file is distributed under the same license as the WPGlobus 2.3.4 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.3.4\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
1
+ # Copyright (C) 2020 WPGlobus 2.3.5
2
+ # This file is distributed under the same license as the WPGlobus 2.3.5 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.3.5\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
readme.txt CHANGED
@@ -218,6 +218,10 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
218
 
219
  == Changelog ==
220
 
 
 
 
 
221
  = 2.3.4 =
222
 
223
  * Added: option to set the `hreflang` tag format.
@@ -235,10 +239,6 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
235
  * Added: (Core/Post Types) post types of `Elementor Pro` to the hidden types array.
236
  * Added: (Core/WPGlobusDialogApp) `afterOpen` callback.
237
 
238
- = 2.3.0 =
239
-
240
- * Added: (Builders/Pods) Support (partially - Standard and Custom Post Types) `Pods – Custom Content Types and Fields`.
241
-
242
  = Earlier versions and Add-ons =
243
 
244
  * [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
218
 
219
  == Changelog ==
220
 
221
+ = 2.3.5 =
222
+
223
+ * (Core/Builders) Fixed the `Undefined offset` PHP Notice in the `is_gutenberg()` method.
224
+
225
  = 2.3.4 =
226
 
227
  * Added: option to set the `hreflang` tag format.
239
  * Added: (Core/Post Types) post types of `Elementor Pro` to the hidden types array.
240
  * Added: (Core/WPGlobusDialogApp) `afterOpen` callback.
241
 
 
 
 
 
242
  = Earlier versions and Add-ons =
243
 
244
  * [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
wpglobus.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
- * Version: 2.3.4
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
42
  exit;
43
  }
44
 
45
- define( 'WPGLOBUS_VERSION', '2.3.4' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48
 
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
+ * Version: 2.3.5
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.3.5' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48