Redux Framework - Version 3.4.1

Version Description

Download this release

Release Info

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

Code changes from version 3.4.0 to 3.4.1

CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
  # Redux Framework Changelog
2
 
 
 
 
 
3
  ## 3.4.0
4
  * WP.org Release
5
 
1
  # Redux Framework Changelog
2
 
3
+ ## 3.4.1
4
+ * Fixed: Small filesystem option with bad filter key reference.
5
+ * Added: Small return if $section filter returned the section empty.
6
+
7
  ## 3.4.0
8
  * WP.org Release
9
 
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.4.0
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -125,6 +125,10 @@ That's because the real FAQ section is on our site! Please visit [http://docs.re
125
 
126
  == Changelog ==
127
 
 
 
 
 
128
  # 3.4.0
129
  * Fixed: Reset section hook firing too early.
130
  * Modified: The Redux Repeater field has landed!
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.4.1
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
125
 
126
  == Changelog ==
127
 
128
+ # 3.4.1
129
+ * Fixed: Small filesystem option with bad filter key reference..
130
+ * Added: Small return if $section filter returned the section empty.
131
+
132
  # 3.4.0
133
  * Fixed: Reset section hook firing too early.
134
  * Modified: The Redux Repeater field has landed!
ReduxCore/framework.php CHANGED
@@ -70,7 +70,7 @@
70
  // ATTENTION DEVS
71
  // Please update the build number with each push, no matter how small.
72
  // This will make for easier support when we ask users what version they are using.
73
- public static $_version = '3.4.0';
74
  public static $_dir;
75
  public static $_url;
76
  public static $_upload_dir;
@@ -1969,6 +1969,11 @@
1969
  $section = apply_filters( "redux/options/{$this->args['opt_name']}/section/{$section['id']}", $section );
1970
  }
1971
 
 
 
 
 
 
1972
  if ( ! isset( $section['title'] ) ) {
1973
  $section['title'] = "";
1974
  }
70
  // ATTENTION DEVS
71
  // Please update the build number with each push, no matter how small.
72
  // This will make for easier support when we ask users what version they are using.
73
+ public static $_version = '3.4.1';
74
  public static $_dir;
75
  public static $_url;
76
  public static $_upload_dir;
1969
  $section = apply_filters( "redux/options/{$this->args['opt_name']}/section/{$section['id']}", $section );
1970
  }
1971
 
1972
+ if ( empty( $section ) ) {
1973
+ unset($this->sections[$k]);
1974
+ continue;
1975
+ }
1976
+
1977
  if ( ! isset( $section['title'] ) ) {
1978
  $section['title'] = "";
1979
  }
ReduxCore/inc/class.redux_filesystem.php CHANGED
@@ -155,7 +155,7 @@
155
  }
156
 
157
  if ( ! $res ) {
158
- add_action( "redux/page/{$parent->args['opt_name']}/form/before", array( $this, 'ftp_form' ) );
159
  }
160
 
161
  return $res;
155
  }
156
 
157
  if ( ! $res ) {
158
+ add_action( "redux/page/{$this->parent->args['opt_name']}/form/before", array( $this, 'ftp_form' ) );
159
  }
160
 
161
  return $res;
class.redux-plugin.php CHANGED
@@ -25,7 +25,7 @@
25
  * @const string VERSION The plugin version, used for cache-busting and script file references
26
  * @since 3.0.0
27
  */
28
- const VERSION = '3.4.0';
29
 
30
  /**
31
  * @access protected
25
  * @const string VERSION The plugin version, used for cache-busting and script file references
26
  * @since 3.0.0
27
  */
28
+ const VERSION = '3.4.1';
29
 
30
  /**
31
  * @access protected
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.4.0
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.4.1
16
  * Text Domain: redux-framework
17
  * License: GPL3+
18
  * License URI: http://www.gnu.org/licenses/gpl-3.0.txt