Skip to content

Commit d1ff0cc

Browse files
committed
4.4.6.3 beta
1 parent 83dda64 commit d1ff0cc

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Redux Changelog
22

3-
## 4.4.6.2
3+
## 4.4.6.3
44
* Removed: CDN alternative support for `ace_editor`. Devs won't update their code, leaving us no choice. Use the `redux/<opt_name>/fields/ace/script` filter to enqueue a local ACE Editor script if needed.
55
* Fixed: Redux template PHP not autoloading.
66

redux-core/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
require_once __DIR__ . '/class-redux-core.php';
3434

35-
Redux_Core::$version = '4.4.6.2';
35+
Redux_Core::$version = '4.4.6.3';
3636
Redux_Core::$redux_path = __DIR__;
3737
Redux_Core::instance();
3838

redux-framework.php

+1-1
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.4.6.2
11+
* Version: 4.4.6.3
1212
* Requires at least: 5.0
1313
* Requires PHP: 7.1
1414
* Author: Team Redux

redux-templates/classes/class-init.php

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ public function __construct() {
3131
return;
3232
}
3333

34+
require_once REDUXTEMPLATES_DIR_PATH . 'classes/class-templates.php';
35+
3436
add_action( 'init', array( $this, 'load' ) );
3537

3638
if ( did_action( 'init' ) ) { // In case the devs load it at the wrong place.

redux-templates/redux-templates.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
//Redux_Functions_Ex::register_class_path( 'ReduxTemplates', REDUXTEMPLATES_DIR_PATH . 'classes/' );
1818

1919
require_once REDUXTEMPLATES_DIR_PATH . 'classes/class-init.php';
20-
require_once REDUXTEMPLATES_DIR_PATH . 'classes/class-templates.php';
2120
require_once REDUXTEMPLATES_DIR_PATH . 'classes/class-template-overrides.php';
2221

2322
new ReduxTemplates\Init();

0 commit comments

Comments
 (0)