SEOPress - Version 4.4.0.3

Version Description

(12/02/2021) = * FIX Fatal errors in posts list

Download this release

Release Info

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

Code changes from version 4.4.0.2 to 4.4.0.3

readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
6
  Requires at least: 4.7+
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
- Stable tag: 4.4.0.2
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -320,8 +320,10 @@ You're theme is probably using a deprecated function to handle the title. <a hre
320
  9. Schemas metabox
321
 
322
  == Changelog ==
 
 
323
  = 4.4.0.2 (12/02/2021) =
324
- * FIX Homepage title
325
  = 4.4.0.1 (12/02/2021) =
326
  * FIX Fatal errors
327
  = 4.4 (10/02/2021) =
6
  Requires at least: 4.7+
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
+ Stable tag: 4.4.0.3
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
320
  9. Schemas metabox
321
 
322
  == Changelog ==
323
+ = 4.4.0.3 (12/02/2021) =
324
+ * FIX Fatal errors in posts list
325
  = 4.4.0.2 (12/02/2021) =
326
+ * FIX Homepage title
327
  = 4.4.0.1 (12/02/2021) =
328
  * FIX Fatal errors
329
  = 4.4 (10/02/2021) =
seopress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
- Version: 4.4.0.2
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
  //Define
57
  ///////////////////////////////////////////////////////////////////////////////////////////////////
58
- define('SEOPRESS_VERSION', '4.4.0.2');
59
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
60
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
61
  define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
+ Version: 4.4.0.3
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
  //Define
57
  ///////////////////////////////////////////////////////////////////////////////////////////////////
58
+ define('SEOPRESS_VERSION', '4.4.0.3');
59
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
60
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
61
  define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
src/Actions/Admin/ManageColumn.php CHANGED
@@ -57,6 +57,9 @@ class ManageColumn implements ExecuteHooksBackend {
57
  }
58
 
59
  public function addColumn($columns) {
 
 
 
60
  if ( ! empty(seopress_advanced_appearance_title_col_option())) {
61
  $columns['seopress_title'] = __('Title tag', 'wp-seopress');
62
  }
57
  }
58
 
59
  public function addColumn($columns) {
60
+ if ( ! function_exists('seopress_advanced_appearance_title_col_option')) {
61
+ require_once SEOPRESS_PLUGIN_DIR_PATH . '/inc/functions/options-advanced-admin.php';
62
+ }
63
  if ( ! empty(seopress_advanced_appearance_title_col_option())) {
64
  $columns['seopress_title'] = __('Title tag', 'wp-seopress');
65
  }
vendor/composer/InstalledVersions.php CHANGED
@@ -29,7 +29,7 @@ private static $installed = array (
29
  'aliases' =>
30
  array (
31
  ),
32
- 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
33
  'name' => 'wp-seopress/wp-seopress',
34
  ),
35
  'versions' =>
@@ -41,7 +41,7 @@ private static $installed = array (
41
  'aliases' =>
42
  array (
43
  ),
44
- 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
45
  ),
46
  ),
47
  );
29
  'aliases' =>
30
  array (
31
  ),
32
+ 'reference' => '4d55ae86f2431a6e66a6d46732cf962ae15a74c1',
33
  'name' => 'wp-seopress/wp-seopress',
34
  ),
35
  'versions' =>
41
  'aliases' =>
42
  array (
43
  ),
44
+ 'reference' => '4d55ae86f2431a6e66a6d46732cf962ae15a74c1',
45
  ),
46
  ),
47
  );
vendor/composer/installed.php CHANGED
@@ -6,7 +6,7 @@
6
  'aliases' =>
7
  array (
8
  ),
9
- 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
10
  'name' => 'wp-seopress/wp-seopress',
11
  ),
12
  'versions' =>
@@ -18,7 +18,7 @@
18
  'aliases' =>
19
  array (
20
  ),
21
- 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
22
  ),
23
  ),
24
  );
6
  'aliases' =>
7
  array (
8
  ),
9
+ 'reference' => '4d55ae86f2431a6e66a6d46732cf962ae15a74c1',
10
  'name' => 'wp-seopress/wp-seopress',
11
  ),
12
  'versions' =>
18
  'aliases' =>
19
  array (
20
  ),
21
+ 'reference' => '4d55ae86f2431a6e66a6d46732cf962ae15a74c1',
22
  ),
23
  ),
24
  );