WP Meta SEO - Version 4.4.9

Version Description

  • Fix : Security issue
Download this release

Release Info

Developer JoomUnited
Plugin Icon 128x128 WP Meta SEO
Version 4.4.9
Comparing to
See all releases

Code changes from version 4.4.8 to 4.4.9

inc/class.metaseo-admin.php CHANGED
@@ -4179,7 +4179,8 @@ class MetaSeoAdmin
4179
  // When user submit tracking options
4180
  if (isset($_POST['_metaseo_gg_service_disconnect'])) {
4181
  // Check none field
4182
- if (empty($_POST['wpms_nonce'])) {
 
4183
  die();
4184
  }
4185
  // Sanitizing submit data and save options
@@ -4235,6 +4236,10 @@ class MetaSeoAdmin
4235
  break;
4236
  case 'metaseo_settings':
4237
  if (isset($_POST['_metaseo_settings'])) {
 
 
 
 
4238
  update_option('_metaseo_settings', $_POST['_metaseo_settings']);
4239
  if (isset($_POST['_metaseo_settings']['wpms_save_general'])) {
4240
  $_SESSION['_metaseo_settings_general'] = 1;
4179
  // When user submit tracking options
4180
  if (isset($_POST['_metaseo_gg_service_disconnect'])) {
4181
  // Check none field
4182
+ if (empty($_POST['wpms_nonce'])
4183
+ || !wp_verify_nonce($_POST['wpms_nonce'], 'wpms_nonce')) {
4184
  die();
4185
  }
4186
  // Sanitizing submit data and save options
4236
  break;
4237
  case 'metaseo_settings':
4238
  if (isset($_POST['_metaseo_settings'])) {
4239
+ if (empty($_POST['wpms_nonce'])
4240
+ || !wp_verify_nonce($_POST['wpms_nonce'], 'wpms_nonce')) {
4241
+ die();
4242
+ }
4243
  update_option('_metaseo_settings', $_POST['_metaseo_settings']);
4244
  if (isset($_POST['_metaseo_settings']['wpms_save_general'])) {
4245
  $_SESSION['_metaseo_settings_general'] = 1;
languages/wp-meta-seo-en_US.mo CHANGED
Binary file
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: JoomUnited
3
  Tags: google, webmaster tools, keywords, meta, meta description, meta keywords, meta title, robots meta, search engine optimization, seo, wordpress seo, yahoo, image optimization, image resize, custom post seo, redirect, redirection, 301, broken link
4
  Requires at least: 4.7
5
  Tested up to: 6.0
6
- Stable tag: 4.4.8
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -259,6 +259,9 @@ Yes WP Meta SEO is compatible with Gutenberg editor since 3.7 version.
259
 
260
  == Changelog ==
261
 
 
 
 
262
  = 4.4.8 =
263
  * Fix : Google Analytics connection: update OAuth2 authorization
264
 
3
  Tags: google, webmaster tools, keywords, meta, meta description, meta keywords, meta title, robots meta, search engine optimization, seo, wordpress seo, yahoo, image optimization, image resize, custom post seo, redirect, redirection, 301, broken link
4
  Requires at least: 4.7
5
  Tested up to: 6.0
6
+ Stable tag: 4.4.9
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
259
 
260
  == Changelog ==
261
 
262
+ = 4.4.9 =
263
+ * Fix : Security issue
264
+
265
  = 4.4.8 =
266
  * Fix : Google Analytics connection: update OAuth2 authorization
267
 
wp-meta-seo.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: WP Meta SEO
5
  * Plugin URI: http://www.joomunited.com/wordpress-products/wp-meta-seo
6
  * Description: WP Meta SEO is a plugin for WordPress to fill meta for content, images and main SEO info in a single view.
7
- * Version: 4.4.8
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
@@ -133,7 +133,7 @@ if (!defined('WPMSEO_VERSION')) {
133
  /**
134
  * Plugin version
135
  */
136
- define('WPMSEO_VERSION', '4.4.8');
137
  }
138
 
139
  if (!defined('WPMS_CLIENTID')) {
4
  * Plugin Name: WP Meta SEO
5
  * Plugin URI: http://www.joomunited.com/wordpress-products/wp-meta-seo
6
  * Description: WP Meta SEO is a plugin for WordPress to fill meta for content, images and main SEO info in a single view.
7
+ * Version: 4.4.9
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
133
  /**
134
  * Plugin version
135
  */
136
+ define('WPMSEO_VERSION', '4.4.9');
137
  }
138
 
139
  if (!defined('WPMS_CLIENTID')) {