WooSidebars - Version 1.4.2

Version Description

Security Fix for XSS vulnerability

Download this release

Release Info

Developer jeffikus
Plugin Icon wp plugin WooSidebars
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

CONTRIBUTING.md CHANGED
File without changes
assets/css/admin-posts.css CHANGED
File without changes
assets/css/admin.css CHANGED
File without changes
assets/images/icon-settings.png CHANGED
File without changes
assets/images/success-off.png CHANGED
File without changes
assets/images/success.png CHANGED
File without changes
assets/js/admin.js CHANGED
File without changes
changelog.txt CHANGED
@@ -1,5 +1,9 @@
1
  *** WooSidebars Changelog ***
2
 
 
 
 
 
3
  2015.02.17 - version 1.4.1
4
  * Fix - Fixes an error notice on the homepage, caused by the tag check logic.
5
  /classes/class-woo-conditions.php
1
  *** WooSidebars Changelog ***
2
 
3
+ 2015-04-22 - version 1.4.2
4
+ * Security Fix - remove_query_arg vulnerability
5
+ /classes/class-woo-sidebars.php
6
+
7
  2015.02.17 - version 1.4.1
8
  * Fix - Fixes an error notice on the homepage, caused by the tag check logic.
9
  /classes/class-woo-conditions.php
classes/class-woo-conditions.php CHANGED
File without changes
classes/class-woo-sidebars.php CHANGED
@@ -703,7 +703,7 @@ class Woo_Sidebars {
703
  }
704
 
705
  $sendback = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'ids' ), wp_get_referer() );
706
- wp_safe_redirect( $sendback );
707
  } // End enable_custom_post_sidebars()
708
 
709
  /**
703
  }
704
 
705
  $sendback = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'ids' ), wp_get_referer() );
706
+ wp_safe_redirect( esc_url( $sendback ) );
707
  } // End enable_custom_post_sidebars()
708
 
709
  /**
index.php CHANGED
File without changes
integrations/integration-woocommerce.php CHANGED
File without changes
lang/woosidebars-en_GB.po CHANGED
File without changes
lang/woosidebars-xx_XX.pot CHANGED
File without changes
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: woothemes, mattyza
3
  Tags: widgets, sidebars, widget-areas
4
  Requires at least: 3.3
5
- Tested up to: 4.1.0
6
- Stable tag: 1.4.1
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -71,6 +71,9 @@ Looking to contribute code to this plugin? [Fork the repository over at GitHub](
71
 
72
  == Upgrade Notice ==
73
 
 
 
 
74
  = 1.4.1 =
75
  Fixes an error notice on the homepage, caused by the tag check logic.
76
 
@@ -95,6 +98,10 @@ Moved to WordPress.org. Woo! Added scope to methods and properties where missing
95
 
96
  == Changelog ==
97
 
 
 
 
 
98
  = 1.4.1 =
99
  * 2015-02-17
100
  Fixes an error notice on the homepage, caused by the tag check logic.
2
  Contributors: woothemes, mattyza
3
  Tags: widgets, sidebars, widget-areas
4
  Requires at least: 3.3
5
+ Tested up to: 4.1.1
6
+ Stable tag: 1.4.2
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
71
 
72
  == Upgrade Notice ==
73
 
74
+ = 1.4.2 =
75
+ Security Fix for XSS vulnerability
76
+
77
  = 1.4.1 =
78
  Fixes an error notice on the homepage, caused by the tag check logic.
79
 
98
 
99
  == Changelog ==
100
 
101
+ = 1.4.2 =
102
+ * 2015-04-22
103
+ * Security Fix for remove_query_arg vulnerability
104
+
105
  = 1.4.1 =
106
  * 2015-02-17
107
  Fixes an error notice on the homepage, caused by the tag check logic.
woosidebars.php CHANGED
@@ -5,8 +5,8 @@
5
  * Description: Replace widget areas in your theme for specific pages, archives and other sections of WordPress.
6
  * Author: WooThemes
7
  * Author URI: http://woothemes.com/
8
- * Version: 1.4.1
9
- * Stable tag: 1.4.1
10
  * License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
11
  */
12
 
@@ -22,6 +22,6 @@
22
 
23
  global $woosidebars;
24
  $woosidebars = new Woo_Sidebars( __FILE__ );
25
- $woosidebars->version = '1.4.1';
26
  $woosidebars->init();
27
  ?>
5
  * Description: Replace widget areas in your theme for specific pages, archives and other sections of WordPress.
6
  * Author: WooThemes
7
  * Author URI: http://woothemes.com/
8
+ * Version: 1.4.2
9
+ * Stable tag: 1.4.2
10
  * License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
11
  */
12
 
22
 
23
  global $woosidebars;
24
  $woosidebars = new Woo_Sidebars( __FILE__ );
25
+ $woosidebars->version = '1.4.2';
26
  $woosidebars->init();
27
  ?>