Version Description
- (Core/Options) Fixed PHP Notice "Undefined index" in the
"Custom Code"
section.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 2.3.10 |
Comparing to | |
See all releases |
Code changes from version 2.3.9 to 2.3.10
- includes/options/class-wpglobus-options.php +2 -2
- languages/wpglobus.pot +3 -3
- readme.txt +4 -4
- wpglobus.php +2 -2
includes/options/class-wpglobus-options.php
CHANGED
@@ -1335,7 +1335,7 @@ class WPGlobus_Options {
|
|
1335 |
'title' => __( 'Custom CSS', 'wpglobus' ),
|
1336 |
'mode' => 'css',
|
1337 |
'name' => 'wpglobus_option[css_editor]',
|
1338 |
-
'value' => $wpglobus_option['css_editor'],
|
1339 |
'subtitle' => '',
|
1340 |
'desc' => '',
|
1341 |
);
|
@@ -1347,7 +1347,7 @@ class WPGlobus_Options {
|
|
1347 |
'title' => __( 'Custom JS Code', 'wpglobus' ),
|
1348 |
'mode' => 'javascript',
|
1349 |
'name' => 'wpglobus_option[js_editor]',
|
1350 |
-
'value' => $wpglobus_option['js_editor'],
|
1351 |
'subtitle' => '',
|
1352 |
'desc' => '',
|
1353 |
);
|
1335 |
'title' => __( 'Custom CSS', 'wpglobus' ),
|
1336 |
'mode' => 'css',
|
1337 |
'name' => 'wpglobus_option[css_editor]',
|
1338 |
+
'value' => empty($wpglobus_option['css_editor']) ? '' : $wpglobus_option['css_editor'],
|
1339 |
'subtitle' => '',
|
1340 |
'desc' => '',
|
1341 |
);
|
1347 |
'title' => __( 'Custom JS Code', 'wpglobus' ),
|
1348 |
'mode' => 'javascript',
|
1349 |
'name' => 'wpglobus_option[js_editor]',
|
1350 |
+
'value' => empty($wpglobus_option['js_editor']) ? '' : $wpglobus_option['js_editor'],
|
1351 |
'subtitle' => '',
|
1352 |
'desc' => '',
|
1353 |
);
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2020 WPGlobus 2.3.
|
2 |
-
# This file is distributed under the same license as the WPGlobus 2.3.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus 2.3.
|
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.10
|
2 |
+
# This file is distributed under the same license as the WPGlobus 2.3.10 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 2.3.10\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.9 =
|
222 |
|
223 |
* (Vendor/All In One SEO Pack) Support All In One SEO Pack 3.4.2.
|
@@ -241,10 +245,6 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
241 |
|
242 |
* (Core/Builders) Fixed the `Undefined offset` PHP Notice in the `is_gutenberg()` method.
|
243 |
|
244 |
-
= 2.3.4 =
|
245 |
-
|
246 |
-
* Added: option to set the `hreflang` tag format.
|
247 |
-
|
248 |
= Earlier versions and Add-ons =
|
249 |
|
250 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
218 |
|
219 |
== Changelog ==
|
220 |
|
221 |
+
= 2.3.10 =
|
222 |
+
|
223 |
+
* (Core/Options) Fixed PHP Notice "Undefined index" in the `"Custom Code"` section.
|
224 |
+
|
225 |
= 2.3.9 =
|
226 |
|
227 |
* (Vendor/All In One SEO Pack) Support All In One SEO Pack 3.4.2.
|
245 |
|
246 |
* (Core/Builders) Fixed the `Undefined offset` PHP Notice in the `is_gutenberg()` method.
|
247 |
|
|
|
|
|
|
|
|
|
248 |
= Earlier versions and Add-ons =
|
249 |
|
250 |
* [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.
|
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.
|
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.10
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '2.3.10' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|