Skip to content

Commit

Permalink
Undefined index. Oy.
Browse files Browse the repository at this point in the history
  • Loading branch information
dovy committed Apr 27, 2014
1 parent 1a73480 commit 197383f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ Send me an email at ghost1227@reduxframework.com so I can add you to our user sp

### Master ###

= 3.2.6 =
* Fixed: Another stray undefined index. Oy.

= 3.2.5.1 =
* Added: `open_expanded` argument to start the panel completely expanded initially.

Expand Down
7 changes: 6 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
Requires at least: 3.5.1
Tested up to: 3.9.0
Stable tag: 3.2.5
Stable tag: 3.2.6
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -125,6 +125,11 @@ That's because the real FAQ section is on our site! Please visit [http://docs.re

== Changelog ==

= 3.2.6 =
* Fixed: Another stray undefined index. Oy.
* Added: `open_expanded` argument to start the panel completely expanded initially.


= 3.2.5 =
* Fixed: Various bad mistakes. Oy.

Expand Down
5 changes: 3 additions & 2 deletions ReduxCore/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @package Redux_Framework
* @subpackage Core
* @author Redux Framework Team
* @version 3.2.5.1
* @version 3.2.6
*/

// Exit if accessed directly
Expand Down Expand Up @@ -64,7 +64,7 @@ class ReduxFramework {
// ATTENTION DEVS
// Please update the build number with each push, no matter how small.
// This will make for easier support when we ask users what version they are using.
public static $_version = '3.2.5.1';
public static $_version = '3.2.6';
public static $_dir;
public static $_url;
public static $wp_content_url;
Expand Down Expand Up @@ -860,6 +860,7 @@ public function _default_values() {
* filter 'redux/options/{opt_name}/defaults'
* @param array $defaults option default values
*/
$this->transients['changed_values'] = isset($this->transients['changed_values']) ? $this->transients['changed_values'] : array();
$this->options_defaults = apply_filters( "redux/options/{$this->args['opt_name']}/defaults", $this->options_defaults, $this->transients['changed_values'] );

return $this->options_defaults;
Expand Down
2 changes: 1 addition & 1 deletion redux-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
* Author: Team Redux
* Author URI: http://reduxframework.com
* Version: 3.2.5.1
* Version: 3.2.6
* Text Domain: redux-framework
* License: GPL3+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
Expand Down

0 comments on commit 197383f

Please sign in to comment.