Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by:KProvance <kevin.provance@gmail.com>
  • Loading branch information
kprovance committed Apr 28, 2015
1 parent 63501fa commit ff32439
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Redux Framework Changelog

## 3.5.4.3
* Fixed: #2258 - welcome redirect error with embedding plugin scenarios.
* Fixed: Redux plugin load order when activating plugins.

## 3.5.4.2
* Fixed: #2271 - stuck redirect on godaddy (seriously, get a real host, people) servers.

Expand Down
2 changes: 1 addition & 1 deletion ReduxCore/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class ReduxFramework {
// 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.5.4.2';
public static $_version = '3.5.4.3';
public static $_dir;
public static $_url;
public static $_upload_dir;
Expand Down
8 changes: 6 additions & 2 deletions ReduxCore/inc/welcome/welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,16 @@ public function check_version() {
$redirect = true; // Previous version
}
if ( $redirect ) {
wp_redirect( admin_url( 'tools.php?page=redux-about' ) );
exit();
add_action('init', array($this, 'do_redirect'));
}
}
}

public function do_redirect() {
wp_redirect( admin_url( 'tools.php?page=redux-about' ) );
exit();
}

public function change_wp_footer() {
echo 'If you like <strong>Redux</strong> please leave us a <a href="https://wordpress.org/support/view/plugin-reviews/redux-framework?filter=5#postform" target="_blank" class="redux-rating-link" data-rated="Thanks :)">★★★★★</a> rating. A huge thank you from Redux in advance!';
}
Expand Down
2 changes: 1 addition & 1 deletion class.redux-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ReduxFrameworkPlugin {
* @since 3.0.0
*/

const VERSION = '3.5.4.2';
const VERSION = '3.5.4.3';

/**
* @access protected
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.5.4.2
* Version: 3.5.4.3
* Text Domain: redux-framework
* License: GPL3+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
Expand Down

0 comments on commit ff32439

Please sign in to comment.