Version Description
- Fixed #4211
Download this release
Release Info
Developer | Unyson |
Plugin | Unyson |
Version | 2.7.26 |
Comparing to | |
See all releases |
Code changes from version 2.7.25 to 2.7.26
- framework/helpers/class-fw-wp-option.php +1 -1
- framework/manifest.php +1 -1
- readme.txt +4 -1
- unyson.php +1 -1
framework/helpers/class-fw-wp-option.php
CHANGED
@@ -21,7 +21,7 @@ class FW_WP_Option
|
|
21 |
_doing_it_wrong(__FUNCTION__, '$get_original_value parameter was removed', 'Unyson 2.5.8');
|
22 |
}
|
23 |
|
24 |
-
$value = get_option($option_name
|
25 |
|
26 |
if (empty($specific_multi_key) && $specific_multi_key !== '0') {
|
27 |
return is_null($value) ? fw_call( $default_value ) : $value;
|
21 |
_doing_it_wrong(__FUNCTION__, '$get_original_value parameter was removed', 'Unyson 2.5.8');
|
22 |
}
|
23 |
|
24 |
+
$value = get_option($option_name, null);
|
25 |
|
26 |
if (empty($specific_multi_key) && $specific_multi_key !== '0') {
|
27 |
return is_null($value) ? fw_call( $default_value ) : $value;
|
framework/manifest.php
CHANGED
@@ -4,4 +4,4 @@ $manifest = array();
|
|
4 |
|
5 |
$manifest['name'] = __('Unyson', 'fw');
|
6 |
|
7 |
-
$manifest['version'] = '2.7.
|
4 |
|
5 |
$manifest['name'] = __('Unyson', 'fw');
|
6 |
|
7 |
+
$manifest['version'] = '2.7.26';
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: unyson
|
|
3 |
Tags: page builder, editor, drag-and-drop, landing-page, widgets, sidebar, backup, shortcodes, backup, seo, breadcrumbs, portfolio, framework
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.9
|
6 |
-
Stable tag: 2.7.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -89,6 +89,9 @@ Yes; Unyson will work with any theme.
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
92 |
= 2.7.25 =
|
93 |
* Fixed [#4209](https://github.com/ThemeFuse/Unyson/issues/4209)
|
94 |
|
3 |
Tags: page builder, editor, drag-and-drop, landing-page, widgets, sidebar, backup, shortcodes, backup, seo, breadcrumbs, portfolio, framework
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.9
|
6 |
+
Stable tag: 2.7.26
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
= 2.7.26 =
|
93 |
+
* Fixed [#4211](https://github.com/ThemeFuse/Unyson/issues/4211)
|
94 |
+
|
95 |
= 2.7.25 =
|
96 |
* Fixed [#4209](https://github.com/ThemeFuse/Unyson/issues/4209)
|
97 |
|
unyson.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Unyson
|
4 |
* Plugin URI: http://unyson.io/
|
5 |
* Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
|
6 |
-
* Version: 2.7.
|
7 |
* Author: ThemeFuse
|
8 |
* Author URI: http://themefuse.com
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Unyson
|
4 |
* Plugin URI: http://unyson.io/
|
5 |
* Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
|
6 |
+
* Version: 2.7.26
|
7 |
* Author: ThemeFuse
|
8 |
* Author URI: http://themefuse.com
|
9 |
* License: GPL2+
|