Version Description
- COMPATIBILITY:
- Gutenberg 4.2.0
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 1.9.26 |
Comparing to | |
See all releases |
Code changes from version 1.9.25 to 1.9.26
- includes/builders/class-wpglobus-config-builder.php +2 -0
- languages/wpglobus.pot +3 -3
- readme.txt +5 -0
- wpglobus.php +2 -2
includes/builders/class-wpglobus-config-builder.php
CHANGED
@@ -281,6 +281,8 @@ if ( ! class_exists( 'WPGlobus_Config_Builder' ) ) :
|
|
281 |
$_request_uri = explode( '/', $_SERVER['REQUEST_URI'] );
|
282 |
|
283 |
$post_id = end( $_request_uri );
|
|
|
|
|
284 |
if ( 0 !== (int) $post_id ) {
|
285 |
$language = get_post_meta( $post_id, $this->get_language_meta_key(), true ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
286 |
}
|
281 |
$_request_uri = explode( '/', $_SERVER['REQUEST_URI'] );
|
282 |
|
283 |
$post_id = end( $_request_uri );
|
284 |
+
$post_id = preg_replace( '/\?.*/', '', $post_id );
|
285 |
+
|
286 |
if ( 0 !== (int) $post_id ) {
|
287 |
$language = get_post_meta( $post_id, $this->get_language_meta_key(), true ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
288 |
}
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2018 WPGlobus 1.9.
|
2 |
-
# This file is distributed under the same license as the WPGlobus 1.9.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus 1.9.
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
1 |
+
# Copyright (C) 2018 WPGlobus 1.9.26
|
2 |
+
# This file is distributed under the same license as the WPGlobus 1.9.26 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 1.9.26\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,11 @@ This maintenance release introduces Gutenberg support in beta-stage.
|
|
218 |
|
219 |
== Changelog ==
|
220 |
|
|
|
|
|
|
|
|
|
|
|
221 |
= 1.9.25 =
|
222 |
|
223 |
* ADDED:
|
218 |
|
219 |
== Changelog ==
|
220 |
|
221 |
+
= 1.9.26 =
|
222 |
+
|
223 |
+
* COMPATIBILITY:
|
224 |
+
* Gutenberg 4.2.0
|
225 |
+
|
226 |
= 1.9.25 =
|
227 |
|
228 |
* ADDED:
|
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: 1.9.
|
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', '1.9.
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
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: 1.9.26
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '1.9.26' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
48 |
/**
|