WP Meta SEO - Version 4.2.7

Version Description

  • Fix : Google Analytics chart display
    • Fix : Some PHP warnings in debug.log
Download this release

Release Info

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

Code changes from version 4.2.6 to 4.2.7

assets/js/google-analytics/google_analytics.js CHANGED
@@ -515,7 +515,7 @@ jQuery.fn.extend({
515
  rtData[ "rows" ] = [];
516
  }
517
 
518
- if (rtData[ "totalsForAllResults" ][ "rt:activeUsers" ] !== document.getElementById("wpms-online").innerHTML) {
519
  jQuery("#wpms-online").fadeOut("slow");
520
  jQuery("#wpms-online").fadeOut(500);
521
  jQuery("#wpms-online").fadeOut("slow", function () {
515
  rtData[ "rows" ] = [];
516
  }
517
 
518
+ if (document.getElementById("wpms-online") != null && rtData[ "totalsForAllResults" ][ "rt:activeUsers" ] !== document.getElementById("wpms-online").innerHTML) {
519
  jQuery("#wpms-online").fadeOut("slow");
520
  jQuery("#wpms-online").fadeOut(500);
521
  jQuery("#wpms-online").fadeOut("slow", function () {
inc/class.metaseo-admin.php CHANGED
@@ -2641,7 +2641,7 @@ class MetaSeoAdmin
2641
 
2642
  wp_enqueue_script(
2643
  'wpmsgooglejsapi',
2644
- 'https://www.google.com/jsapi?autoload=%7B%22modules%22%3A%5B%7B%22name%22%3A%22visualization%22%2C%22version%22%3A%221%22%2C%22language%22%3A%22' . $lang . '%22%2C%22packages%22%3A%5B%22corechart%22%2C%20%22table%22%2C%20%22orgchart%22%2C%20%22geochart%22%5D%7D%5D%7D%27',
2645
  array(),
2646
  null
2647
  );
2641
 
2642
  wp_enqueue_script(
2643
  'wpmsgooglejsapi',
2644
+ 'https://www.google.com/jsapi?autoload=%7B%22modules%22%3A%5B%7B%22name%22%3A%22visualization%22%2C%22version%22%3A%221%22%2C%22language%22%3A%22' . $lang . '%22%2C%22packages%22%3A%5B%22corechart%22%2C%20%22imagechart%22%2C%20%22table%22%2C%20%22orgchart%22%2C%20%22geochart%22%5D%7D%5D%7D',
2645
  array(),
2646
  null
2647
  );
inc/class.metaseo-broken-link-table.php CHANGED
@@ -1892,6 +1892,11 @@ class MetaSeoBrokenLinkTable extends WP_List_Table
1892
  {
1893
  $info_link = parse_url($link);
1894
  $info_site_url = parse_url($siteUrl);
 
 
 
 
 
1895
  if (empty($info_link['path']) || $info_site_url['path'] || empty($info_link['host'])) {
1896
  $value['internal'] = 0;
1897
  return $value;
1892
  {
1893
  $info_link = parse_url($link);
1894
  $info_site_url = parse_url($siteUrl);
1895
+ if (!isset($info_link['path']) || !isset($info_site_url['path'])) {
1896
+ $value['internal'] = 0;
1897
+ return $value;
1898
+ }
1899
+
1900
  if (empty($info_link['path']) || $info_site_url['path'] || empty($info_link['host'])) {
1901
  $value['internal'] = 0;
1902
  return $value;
inc/class.metaseo-meta.php CHANGED
@@ -220,7 +220,7 @@ class WPMSEOMeta
220
 
221
  case 'general':
222
  $options = get_option('wpmseo_titles');
223
- if ($options['usemetakeywords'] === true) {
224
  $hr = esc_url(admin_url('admin.php?page=wpmseo_titles#top#post_types'));
225
  $field_defs['metakeywords']['description'] = sprintf(
226
  $field_defs['metakeywords']['description'],
220
 
221
  case 'general':
222
  $options = get_option('wpmseo_titles');
223
+ if (isset($options['usemetakeywords']) && $options['usemetakeywords'] === true) {
224
  $hr = esc_url(admin_url('admin.php?page=wpmseo_titles#top#post_types'));
225
  $field_defs['metakeywords']['description'] = sprintf(
226
  $field_defs['metakeywords']['description'],
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: 5.4.2
6
- Stable tag: 4.2.6
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,10 @@ Yes WP Meta SEO is compatible with Gutenberg editor since 3.7 version.
259
 
260
  == Changelog ==
261
 
 
 
 
 
262
  = 4.2.6 =
263
  * Fix : Google Client libraries conflict with BackupBuddy plugin
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: 5.4.2
6
+ Stable tag: 4.2.7
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.2.7 =
263
+ * Fix : Google Analytics chart display
264
+ * Fix : Some PHP warnings in debug.log
265
+
266
  = 4.2.6 =
267
  * Fix : Google Client libraries conflict with BackupBuddy plugin
268
 
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.2.6
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
@@ -132,7 +132,7 @@ if (!defined('WPMSEO_VERSION')) {
132
  /**
133
  * Plugin version
134
  */
135
- define('WPMSEO_VERSION', '4.2.6');
136
  }
137
 
138
  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.2.7
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
132
  /**
133
  * Plugin version
134
  */
135
+ define('WPMSEO_VERSION', '4.2.7');
136
  }
137
 
138
  if (!defined('WPMS_CLIENTID')) {