From 9d01cf52a3f3afcfc4f085eb4c737670ca080ba6 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Tue, 18 Jun 2024 00:03:34 +0800 Subject: [PATCH] [localhost-url] Updated the supported localhost site URLs (added support for 10Web Hosting). --- includes/entities/class-fs-site.php | 4 +++- start.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/entities/class-fs-site.php b/includes/entities/class-fs-site.php index f9012d05..04c820ea 100755 --- a/includes/entities/class-fs-site.php +++ b/includes/entities/class-fs-site.php @@ -201,7 +201,9 @@ static function is_localhost_by_address( $url ) { // Vendasta ( fs_ends_with( $subdomain, '.websitepro-staging.com' ) || fs_ends_with( $subdomain, '.websitepro.hosting' ) ) || // InstaWP - fs_ends_with( $subdomain, '.instawp.xyz' ) + fs_ends_with( $subdomain, '.instawp.xyz' ) || + // 10Web Hosting + ( fs_ends_with( $subdomain, '-dev.10web.site' ) || fs_ends_with( $subdomain, '-dev.10web.cloud' ) ) ); } diff --git a/start.php b/start.php index 15ecad24..ae9b7d78 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.3'; + $this_sdk_version = '2.7.3.1'; #region SDK Selection Logic --------------------------------------------------------------------