Error since last update
-
Hello, since last update, there is this error :
Warning: Undefined array key “scheme” in …/wp-content/plugins/woo-product-filter/modules/woofilters/mod.php on line 296
Warning: Undefined array key “host” in …/wp-content/plugins/woo-product-filter/modules/woofilters/mod.php on line 296
Fixed it by replacing line 296 of woo-product-filter/modules/woofilters/mod.php :$baseUrl = $urlParts['scheme'] . '://' . $urlParts['host'] . (isset($urlParts['path']) ? $urlParts['path'] : '');
with$baseUrl = (isset($urlParts['scheme']) ? $urlParts['scheme'] : '') . '://' . (isset($urlParts['host']) ? $urlParts['host'] : '') . (isset($urlParts['path']) ? $urlParts['path'] : '');
The topic ‘Error since last update’ is closed to new replies.