BoldGrid Easy SEO – Simple and Effective SEO - Version 1.6.6

Version Description

Release Date: August 6th, 2020

  • Bug fix: Fixed PHP 7.4 Deprecated implode calls.
Download this release

Release Info

Developer boldgrid
Plugin Icon 128x128 BoldGrid Easy SEO – Simple and Effective SEO
Version 1.6.6
Comparing to
See all releases

Code changes from version 1.6.5 to 1.6.6

boldgrid-easy-seo.php CHANGED
@@ -14,7 +14,7 @@
14
  * Plugin Name: BoldGrid Easy SEO
15
  * Plugin URI: https://www.boldgrid.com/boldgrid-seo/
16
  * Description: Easily manage your website's search engine optimization with Easy SEO by BoldGrid!
17
- * Version: 1.6.5
18
  * Author: BoldGrid <support@boldgrid.com>
19
  * Author URI: https://www.boldgrid.com/
20
  * License: GPL-2.0+
14
  * Plugin Name: BoldGrid Easy SEO
15
  * Plugin URI: https://www.boldgrid.com/boldgrid-seo/
16
  * Description: Easily manage your website's search engine optimization with Easy SEO by BoldGrid!
17
+ * Version: 1.6.6
18
  * Author: BoldGrid <support@boldgrid.com>
19
  * Author URI: https://www.boldgrid.com/
20
  * License: GPL-2.0+
includes/class-boldgrid-seo-util.php CHANGED
@@ -99,7 +99,7 @@ class Boldgrid_Seo_Util {
99
  // Check out a single sentence returned.
100
  case 1 :
101
  // Create string with our setence.
102
- $sentences = implode( $sentences, '' ) . '.';
103
  // If it's a longer sentence it should have ellipses.
104
  strlen( $sentences ) < 130 ? : $sentences = $sentences . '..';
105
  break;
@@ -108,14 +108,14 @@ class Boldgrid_Seo_Util {
108
  // Remove the partial sentences from the end.
109
  array_pop( $sentences );
110
  // Create single sentence with period at the end.
111
- $sentences = implode( $sentences, '' ) . '.';
112
  break;
113
  // Multiple sentences are the most likely scenario.
114
  default :
115
  // Remove last sentence since it's likely a partial.
116
  array_pop( $sentences );
117
  // Create string with whole sentences and puncuation.
118
- $sentences = implode( $sentences, '. ' );
119
  // Remove any whitespace for output.
120
  $sentences = trim( $sentences );
121
  }
99
  // Check out a single sentence returned.
100
  case 1 :
101
  // Create string with our setence.
102
+ $sentences = implode( '', $sentences ) . '.';
103
  // If it's a longer sentence it should have ellipses.
104
  strlen( $sentences ) < 130 ? : $sentences = $sentences . '..';
105
  break;
108
  // Remove the partial sentences from the end.
109
  array_pop( $sentences );
110
  // Create single sentence with period at the end.
111
+ $sentences = implode( '', $sentences ) . '.';
112
  break;
113
  // Multiple sentences are the most likely scenario.
114
  default :
115
  // Remove last sentence since it's likely a partial.
116
  array_pop( $sentences );
117
  // Create string with whole sentences and puncuation.
118
+ $sentences = implode( '. ', $sentences );
119
  // Remove any whitespace for output.
120
  $sentences = trim( $sentences );
121
  }
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: boldgrid, timph, rramo012, imh_brad, joemoto
3
  Tags: seo, search engine optimization, content analysis, readability, boldgrid
4
  Requires at least: 4.4
5
- Tested up to: 5.4
6
  Requires PHP: 5.3
7
- Stable tag: 1.6.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -78,6 +78,12 @@ The BoldGrid Easy SEO plugin is open source software. Join in on our [GitHub rep
78
 
79
  == Changelog ==
80
 
 
 
 
 
 
 
81
  = 1.6.5 =
82
 
83
  Release Date: March 19th, 2020
2
  Contributors: boldgrid, timph, rramo012, imh_brad, joemoto
3
  Tags: seo, search engine optimization, content analysis, readability, boldgrid
4
  Requires at least: 4.4
5
+ Tested up to: 5.5
6
  Requires PHP: 5.3
7
+ Stable tag: 1.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
78
 
79
  == Changelog ==
80
 
81
+ = 1.6.6 =
82
+
83
+ Release Date: August 6th, 2020
84
+
85
+ * Bug fix: Fixed PHP 7.4 Deprecated implode calls.
86
+
87
  = 1.6.5 =
88
 
89
  Release Date: March 19th, 2020