WordPress SEO Plugin – Rank Math - Version 1.0.30.1

Version Description

[Jul 23, 2019] = * Fixed a compatibility issue with AMPforWP plugin

Download this release

Release Info

Developer MyThemeShop
Plugin Icon 128x128 WordPress SEO Plugin – Rank Math
Version 1.0.30.1
Comparing to
See all releases

Code changes from version 1.0.30 to 1.0.30.1

includes/modules/redirections/class-redirector.php CHANGED
@@ -396,6 +396,6 @@ class Redirector {
396
  * @return bool
397
  */
398
  private function is_amp_endpoint() {
399
- return \function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() && ! amp_is_canonical();
400
  }
401
  }
396
  * @return bool
397
  */
398
  private function is_amp_endpoint() {
399
+ return \function_exists( 'is_amp_endpoint' ) && \function_exists( 'amp_is_canonical' ) && is_amp_endpoint() && ! amp_is_canonical();
400
  }
401
  }
rank-math.php CHANGED
@@ -9,7 +9,7 @@
9
  *
10
  * @wordpress-plugin
11
  * Plugin Name: Rank Math SEO
12
- * Version: 1.0.30
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.30';
38
 
39
  /**
40
  * Rank Math database version.
9
  *
10
  * @wordpress-plugin
11
  * Plugin Name: Rank Math SEO
12
+ * Version: 1.0.30.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.30.1';
38
 
39
  /**
40
  * Rank Math database version.
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: seo, sitemap, google search console, schema, redirection
5
  Tested up to: 5.2.2
6
  Requires at least: 4.7.0
7
  Requires PHP: 5.6
8
- Stable tag: 1.0.30
9
  License: GPL-2.0+
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.txt
11
 
@@ -451,6 +451,9 @@ We look forward to helping you.
451
 
452
  == Changelog ==
453
 
 
 
 
454
  = 1.0.30 [Jul 22, 2019] =
455
  * Added localization of weekdays in the Contact Shortcode
456
  * Added a filter for `GET_query` params so they could be redirected as well
5
  Tested up to: 5.2.2
6
  Requires at least: 4.7.0
7
  Requires PHP: 5.6
8
+ Stable tag: 1.0.30.1
9
  License: GPL-2.0+
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.txt
11
 
451
 
452
  == Changelog ==
453
 
454
+ = 1.0.30.1 [Jul 23, 2019] =
455
+ * Fixed a compatibility issue with AMPforWP plugin
456
+
457
  = 1.0.30 [Jul 22, 2019] =
458
  * Added localization of weekdays in the Contact Shortcode
459
  * Added a filter for `GET_query` params so they could be redirected as well