Redux Framework - Version 3.5.2

Version Description

  • Fixed: #2214 - Import/export field contained bad enqueue path.
Download this release

Release Info

Developer dovyp
Plugin Icon 128x128 Redux Framework
Version 3.5.2
Comparing to
See all releases

Code changes from version 3.5.1 to 3.5.2

CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
  # Redux Framework Changelog
2
 
 
 
 
 
3
  ## 3.5.1
4
  * Release: Wp.org release.
5
 
1
  # Redux Framework Changelog
2
 
3
+ ## 3.5.2
4
+ * Fixed: #2214: Bad path for import/export enqueue.
5
+ * Release: Wp.org release.
6
+
7
  ## 3.5.1
8
  * Release: Wp.org release.
9
 
ReduxCore/framework.php CHANGED
@@ -74,7 +74,7 @@
74
  // Please update the build number with each push, no matter how small.
75
  // This will make for easier support when we ask users what version they are using.
76
 
77
- public static $_version = '3.5.1';
78
  public static $_dir;
79
  public static $_url;
80
  public static $_upload_dir;
74
  // Please update the build number with each push, no matter how small.
75
  // This will make for easier support when we ask users what version they are using.
76
 
77
+ public static $_version = '3.5.2';
78
  public static $_dir;
79
  public static $_url;
80
  public static $_upload_dir;
ReduxCore/inc/extensions/import_export/import_export/field_import_export.php CHANGED
@@ -46,8 +46,8 @@
46
  $this->value = $value;
47
  $this->is_field = $this->parent->extensions['import_export']->is_field;
48
 
49
- $this->extension_dir = ReduxFramework::$_dir . 'inc/extensions/import_export/import_export/';
50
- $this->extension_url = ReduxFramework::$_url . 'inc/extensions/import_export/import_export/';
51
 
52
  // Set default args for this field to avoid bad indexes. Change this to anything you use.
53
  $defaults = array(
46
  $this->value = $value;
47
  $this->is_field = $this->parent->extensions['import_export']->is_field;
48
 
49
+ $this->extension_dir = ReduxFramework::$_dir . 'inc/extensions/import_export/';
50
+ $this->extension_url = ReduxFramework::$_url . 'inc/extensions/import_export/';
51
 
52
  // Set default args for this field to avoid bad indexes. Change this to anything you use.
53
  $defaults = array(
ReduxCore/inc/welcome/welcome.php CHANGED
@@ -85,8 +85,8 @@
85
  $redirect = true; // Previous version
86
  }
87
  if ( $redirect ) {
88
- //wp_safe_redirect( admin_url( 'tools.php?page=redux-about' ) );
89
- //exit();
90
  }
91
  }
92
  }
85
  $redirect = true; // Previous version
86
  }
87
  if ( $redirect ) {
88
+ wp_safe_redirect( admin_url( 'tools.php?page=redux-about' ) );
89
+ exit();
90
  }
91
  }
92
  }
class.redux-plugin.php CHANGED
@@ -26,7 +26,7 @@
26
  * @since 3.0.0
27
  */
28
 
29
- const VERSION = '3.5.1';
30
 
31
  /**
32
  * @access protected
26
  * @since 3.0.0
27
  */
28
 
29
+ const VERSION = '3.5.2';
30
 
31
  /**
32
  * @access protected
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
5
  Requires at least: 3.5.1
6
  Tested up to: 4.2
7
- Stable tag: 3.5.1
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -125,6 +125,9 @@ That's because the real FAQ section is on our site! Please visit [http://docs.re
125
 
126
  == Changelog ==
127
 
 
 
 
128
  = 3.5.1 =
129
  * Modified: Redux News dashboard widget appears only when dev_mode is true or in a local host environment.
130
  * Fixed #2127 - Elusive icons not working in footer as before.
4
  Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
5
  Requires at least: 3.5.1
6
  Tested up to: 4.2
7
+ Stable tag: 3.5.2
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
125
 
126
  == Changelog ==
127
 
128
+ = 3.5.2 =
129
+ * Fixed: #2214 - Import/export field contained bad enqueue path.
130
+
131
  = 3.5.1 =
132
  * Modified: Redux News dashboard widget appears only when dev_mode is true or in a local host environment.
133
  * Fixed #2127 - Elusive icons not working in footer as before.
redux-framework.php CHANGED
@@ -12,7 +12,7 @@
12
  * Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
13
  * Author: Team Redux
14
  * Author URI: http://reduxframework.com
15
- * Version: 3.5.1
16
  * Text Domain: redux-framework
17
  * License: GPL3+
18
  * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
12
  * Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
13
  * Author: Team Redux
14
  * Author URI: http://reduxframework.com
15
+ * Version: 3.5.2
16
  * Text Domain: redux-framework
17
  * License: GPL3+
18
  * License URI: http://www.gnu.org/licenses/gpl-3.0.txt