Skip to content

Commit c9df21a

Browse files
committed
Extendify menu item fix and ver bump
Signed-off-by: Kev Provance <[email protected]>
1 parent 2b35eb0 commit c9df21a

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Redux Changelog
22

3+
## 4.3.18.2
4+
* Fixed: Extendify menu item appearing when it should not.
5+
36
## 4.3.18.1
47
* Fixed: #3909 - Blank page template would cause fatal error.
58

extendify-sdk/app/Library/Welcome.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct()
3232
}
3333

3434
// If they aren't using Launch, then show the top level page.
35-
if (!Config::$showOnboarding) {
35+
if (!Config::$showOnboarding && Config::$standalone) {
3636
\add_action('admin_menu', [ $this, 'addAdminMenu' ]);
3737
return;
3838
}

redux-core/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
require_once dirname( __FILE__ ) . '/class-redux-core.php';
3232

33-
Redux_Core::$version = '4.3.18.1';
33+
Redux_Core::$version = '4.3.18.2';
3434
Redux_Core::$redux_path = dirname( __FILE__ );
3535
Redux_Core::instance();
3636

redux-framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin URI: http://wordpress.org/plugins/redux-framework
99
* GitHub URI: reduxframework/redux-framework
1010
* Description: Build better sites in WordPress fast!
11-
* Version: 4.3.18.1
11+
* Version: 4.3.18.2
1212
* Requires at least: 4.0
1313
* Requires PHP: 7.1
1414
* Author: Extendify

0 commit comments

Comments
 (0)