SEOPress - Version 3.3.13.1

Version Description

  • FIX CSS admin body class
Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 3.3.13.1
Comparing to
See all releases

Code changes from version 3.3.13 to 3.3.13.1

Files changed (2) hide show
  1. readme.txt +3 -1
  2. seopress.php +5 -4
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
6
  Requires at least: 4.4+
7
  Tested up to: 5.1
8
  Requires PHP: 5.4
9
- Stable tag: 3.3.13
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -162,6 +162,8 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
162
  44. Structured Data Types metaboxe in post, page, custom post type (PRO)
163
 
164
  == Changelog ==
 
 
165
  = 3.3.13 =
166
  * INFO Update updater
167
  * FIX The link has expired with very specific configurations
6
  Requires at least: 4.4+
7
  Tested up to: 5.1
8
  Requires PHP: 5.4
9
+ Stable tag: 3.3.13.1
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
162
  44. Structured Data Types metaboxe in post, page, custom post type (PRO)
163
 
164
  == Changelog ==
165
+ = 3.3.13.1 =
166
+ * FIX CSS admin body class
167
  = 3.3.13 =
168
  * INFO Update updater
169
  * FIX The link has expired with very specific configurations
seopress.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: The best plugin for SEO.
6
- Version: 3.3.13
7
  Author: Benjamin Denis
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
@@ -53,7 +53,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
53
  ///////////////////////////////////////////////////////////////////////////////////////////////////
54
  //Define
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
- define( 'SEOPRESS_VERSION', '3.3.13' );
57
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
58
 
59
  ///////////////////////////////////////////////////////////////////////////////////////////////////
@@ -224,7 +224,7 @@ add_action( 'admin_print_scripts-edit.php', 'seopress_add_admin_options_scripts_
224
  ///////////////////////////////////////////////////////////////////////////////////////////////////
225
  //Admin Body Class
226
  ///////////////////////////////////////////////////////////////////////////////////////////////////
227
- add_filter( 'admin_body_class', 'seopress_admin_body_class', 100 );
228
  function seopress_admin_body_class( $classes ) {
229
  if ((isset($_GET['page']) && ($_GET['page'] == 'seopress-option'))
230
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-network-option'))
@@ -237,7 +237,8 @@ function seopress_admin_body_class( $classes ) {
237
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-pro-page'))
238
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-bot-batch'))
239
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-license'))) {
240
- return $classes." seopress-styles";
 
241
  }
242
  }
243
 
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: The best plugin for SEO.
6
+ Version: 3.3.13.1
7
  Author: Benjamin Denis
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
53
  ///////////////////////////////////////////////////////////////////////////////////////////////////
54
  //Define
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
+ define( 'SEOPRESS_VERSION', '3.3.13.1' );
57
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
58
 
59
  ///////////////////////////////////////////////////////////////////////////////////////////////////
224
  ///////////////////////////////////////////////////////////////////////////////////////////////////
225
  //Admin Body Class
226
  ///////////////////////////////////////////////////////////////////////////////////////////////////
227
+ add_filter( 'admin_body_class', 'seopress_admin_body_class' );
228
  function seopress_admin_body_class( $classes ) {
229
  if ((isset($_GET['page']) && ($_GET['page'] == 'seopress-option'))
230
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-network-option'))
237
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-pro-page'))
238
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-bot-batch'))
239
  || (isset($_GET['page']) && ($_GET['page'] == 'seopress-license'))) {
240
+ $classes .= " seopress-styles ";
241
+ return $classes;
242
  }
243
  }
244