Version Description
[Mar 21, 2021] = * Fixed: Fatal PHP Error after updating the plugin where very old PRO version is present
Download this release
Release Info
Developer | rankmath |
Plugin | WordPress SEO Plugin – Rank Math |
Version | 1.0.60.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.60 to 1.0.60.1
includes/modules/analytics/class-watcher.php
CHANGED
@@ -49,7 +49,7 @@ class Watcher {
|
|
49 |
public function hooks() {
|
50 |
if ( Console::is_console_connected() ||
|
51 |
Analytics::is_analytics_connected() ||
|
52 |
-
\class_exists( 'RankMathPro\Google\Adsense' ) && Adsense::is_adsense_connected()
|
53 |
) {
|
54 |
$this->action( 'save_post', 'update_post_info', 99 );
|
55 |
$this->action( 'rank_math/schema/update', 'update_post_schema_info', 99 );
|
49 |
public function hooks() {
|
50 |
if ( Console::is_console_connected() ||
|
51 |
Analytics::is_analytics_connected() ||
|
52 |
+
\class_exists( 'RankMathPro\Google\Adsense' ) && method_exists( 'Adsense', 'is_adsense_connected' ) && Adsense::is_adsense_connected()
|
53 |
) {
|
54 |
$this->action( 'save_post', 'update_post_info', 99 );
|
55 |
$this->action( 'rank_math/schema/update', 'update_post_schema_info', 99 );
|
includes/modules/local-seo/class-local-seo.php
CHANGED
@@ -362,4 +362,4 @@ class Local_Seo {
|
|
362 |
|
363 |
return $entity;
|
364 |
}
|
365 |
-
}
|
362 |
|
363 |
return $entity;
|
364 |
}
|
365 |
+
}
|
rank-math.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
*
|
10 |
* @wordpress-plugin
|
11 |
* Plugin Name: Rank Math SEO
|
12 |
-
* Version: 1.0.60
|
13 |
* Plugin URI: https://s.rankmath.com/home
|
14 |
* Description: Rank Math is a revolutionary SEO product that combines the features of many SEO tools and lets you multiply your traffic in the easiest way possible.
|
15 |
* Author: Rank Math
|
@@ -34,7 +34,7 @@ final class RankMath {
|
|
34 |
*
|
35 |
* @var string
|
36 |
*/
|
37 |
-
public $version = '1.0.60';
|
38 |
|
39 |
/**
|
40 |
* Rank Math database version.
|
9 |
*
|
10 |
* @wordpress-plugin
|
11 |
* Plugin Name: Rank Math SEO
|
12 |
+
* Version: 1.0.60.1
|
13 |
* Plugin URI: https://s.rankmath.com/home
|
14 |
* Description: Rank Math is a revolutionary SEO product that combines the features of many SEO tools and lets you multiply your traffic in the easiest way possible.
|
15 |
* Author: Rank Math
|
34 |
*
|
35 |
* @var string
|
36 |
*/
|
37 |
+
public $version = '1.0.60.1';
|
38 |
|
39 |
/**
|
40 |
* Rank Math database version.
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: seo, sitemap, google search console, schema, redirection, WordPress SEO
|
|
5 |
Tested up to: 5.7
|
6 |
Requires at least: 5.5
|
7 |
Requires PHP: 7.2
|
8 |
-
Stable tag: 1.0.60
|
9 |
License: GPL-2.0+
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.txt
|
11 |
|
@@ -475,6 +475,9 @@ Please drop us an email at support@rankmath.com and we would be more than happy
|
|
475 |
|
476 |
== Changelog ==
|
477 |
|
|
|
|
|
|
|
478 |
= 1.0.60 [Mar 18, 2021] =
|
479 |
* Updated: [Minimum required PHP](https://wordpress.org/about/requirements/?utm_source=Plugin&utm_medium=Changelog&utm_campaign=WP) version is now set to 7.2. Even though the EOL is reached for PHP 7.2 as well. In a few months, we will not support any PHP version that has run out of its EOL cycle. Not only it's a security risk, but it also affects performance.
|
480 |
* Improved: [Analytics module](https://rankmath.com/kb/analytics/?utm_source=Plugin&utm_medium=Changelog&utm_campaign=WP) now shows the latest position for keywords and posts instead of the average position for a selected timeframe. You should see better stats overall in the plugin now
|
5 |
Tested up to: 5.7
|
6 |
Requires at least: 5.5
|
7 |
Requires PHP: 7.2
|
8 |
+
Stable tag: 1.0.60.1
|
9 |
License: GPL-2.0+
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.txt
|
11 |
|
475 |
|
476 |
== Changelog ==
|
477 |
|
478 |
+
= 1.0.60.1 [Mar 21, 2021] =
|
479 |
+
* Fixed: Fatal PHP Error after updating the plugin where very old PRO version is present
|
480 |
+
|
481 |
= 1.0.60 [Mar 18, 2021] =
|
482 |
* Updated: [Minimum required PHP](https://wordpress.org/about/requirements/?utm_source=Plugin&utm_medium=Changelog&utm_campaign=WP) version is now set to 7.2. Even though the EOL is reached for PHP 7.2 as well. In a few months, we will not support any PHP version that has run out of its EOL cycle. Not only it's a security risk, but it also affects performance.
|
483 |
* Improved: [Analytics module](https://rankmath.com/kb/analytics/?utm_source=Plugin&utm_medium=Changelog&utm_campaign=WP) now shows the latest position for keywords and posts instead of the average position for a selected timeframe. You should see better stats overall in the plugin now
|