Version Description
This update adds major improvements and bugfixes.
Download this release
Release Info
Developer | benjaminprojas |
Plugin | All in One SEO Pack |
Version | 4.1.9.4 |
Comparing to | |
See all releases |
Code changes from version 4.1.9.3 to 4.1.9.4
- all_in_one_seo_pack.php +2 -2
- app/Common/Utils/Filesystem.php +8 -2
- readme.txt +7 -3
all_in_one_seo_pack.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
|
6 |
* Author: All in One SEO Team
|
7 |
* Author URI: https://aioseo.com/
|
8 |
-
* Version: 4.1.9.
|
9 |
* Text Domain: all-in-one-seo-pack
|
10 |
* Domain Path: /languages
|
11 |
*
|
@@ -91,4 +91,4 @@ if ( version_compare( PHP_VERSION, '5.5', '<' ) ) {
|
|
91 |
// Define the class and the function.
|
92 |
require_once( dirname( __FILE__ ) . '/app/AIOSEO.php' );
|
93 |
|
94 |
-
aioseo();
|
5 |
* Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
|
6 |
* Author: All in One SEO Team
|
7 |
* Author URI: https://aioseo.com/
|
8 |
+
* Version: 4.1.9.4
|
9 |
* Text Domain: all-in-one-seo-pack
|
10 |
* Domain Path: /languages
|
11 |
*
|
91 |
// Define the class and the function.
|
92 |
require_once( dirname( __FILE__ ) . '/app/AIOSEO.php' );
|
93 |
|
94 |
+
aioseo();
|
app/Common/Utils/Filesystem.php
CHANGED
@@ -243,7 +243,13 @@ class Filesystem {
|
|
243 |
* @return bool True if valid, false if not.
|
244 |
*/
|
245 |
public function isWpfsValid() {
|
246 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
return false;
|
248 |
}
|
249 |
|
@@ -260,4 +266,4 @@ class Filesystem {
|
|
260 |
public function noConflict() {
|
261 |
return clone $this;
|
262 |
}
|
263 |
-
}
|
243 |
* @return bool True if valid, false if not.
|
244 |
*/
|
245 |
public function isWpfsValid() {
|
246 |
+
if (
|
247 |
+
! is_a( $this->fs, 'WP_Filesystem_Base' ) ||
|
248 |
+
(
|
249 |
+
! empty( $this->fs->errors ) &&
|
250 |
+
$this->fs->errors->has_errors()
|
251 |
+
)
|
252 |
+
) {
|
253 |
return false;
|
254 |
}
|
255 |
|
266 |
public function noConflict() {
|
267 |
return clone $this;
|
268 |
}
|
269 |
+
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: aioseo, smub, benjaminprojas
|
|
3 |
Tags: SEO, Google Search Console, XML Sitemap, meta description, schema, meta title, rich snippets, woocommerce seo, local seo, open graph, google news sitemap, video sitemap, robots.txt, seo audit, content analysis, seo plugin, redirection
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.9.2
|
6 |
-
Stable tag: 4.1.9.
|
7 |
License: GPLv2 or later
|
8 |
Requires PHP: 5.4
|
9 |
|
@@ -210,6 +210,10 @@ Visit <a href="http://www.wpbeginner.com/" rel="friend" title="WPBeginner">WPBeg
|
|
210 |
|
211 |
== Changelog ==
|
212 |
|
|
|
|
|
|
|
|
|
213 |
**New in Version 4.1.9.3**
|
214 |
|
215 |
* Update: Change version number to bust wordpress.org plugin cache.
|
@@ -862,6 +866,6 @@ AIOSEO is the original WordPress SEO plugin, and it's trusted by over 3 million
|
|
862 |
|
863 |
== Upgrade Notice ==
|
864 |
|
865 |
-
= 4.1.9.
|
866 |
|
867 |
-
This update adds major improvements and bugfixes.
|
3 |
Tags: SEO, Google Search Console, XML Sitemap, meta description, schema, meta title, rich snippets, woocommerce seo, local seo, open graph, google news sitemap, video sitemap, robots.txt, seo audit, content analysis, seo plugin, redirection
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.9.2
|
6 |
+
Stable tag: 4.1.9.4
|
7 |
License: GPLv2 or later
|
8 |
Requires PHP: 5.4
|
9 |
|
210 |
|
211 |
== Changelog ==
|
212 |
|
213 |
+
**New in Version 4.1.9.4**
|
214 |
+
|
215 |
+
* Fixed: PHP errors for users with invalid FTP/SSH filesystems.
|
216 |
+
|
217 |
**New in Version 4.1.9.3**
|
218 |
|
219 |
* Update: Change version number to bust wordpress.org plugin cache.
|
866 |
|
867 |
== Upgrade Notice ==
|
868 |
|
869 |
+
= 4.1.9.4 =
|
870 |
|
871 |
+
This update adds major improvements and bugfixes.
|