diff --git a/includes/class-freemius.php b/includes/class-freemius.php index c22650ee..34b768f4 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -22468,7 +22468,7 @@ private function complete_change_owner() { $this->_set_account( $user, $this->_site ); $remove_user = true; - $all_modules_sites = self::get_all_modules_sites(); + $all_modules_sites = FS_DebugManager::get_all_modules_sites(); foreach ( $all_modules_sites as $sites_by_module_type ) { foreach ( $sites_by_module_type as $sites_by_slug ) { diff --git a/includes/managers/class-fs-clone-manager.php b/includes/managers/class-fs-clone-manager.php index 01c20cf3..c46deb2a 100644 --- a/includes/managers/class-fs-clone-manager.php +++ b/includes/managers/class-fs-clone-manager.php @@ -333,7 +333,7 @@ private function find_network_subsite_clone_install( Freemius $instance ) { } if ( ! isset( $this->all_installs ) ) { - $this->all_installs = Freemius::get_all_modules_sites(); + $this->all_installs = FS_DebugManager::get_all_modules_sites(); } // Check if there's another blog that has the same site. diff --git a/includes/managers/class-fs-debug-manager.php b/includes/managers/class-fs-debug-manager.php index f8b8e130..5364712d 100644 --- a/includes/managers/class-fs-debug-manager.php +++ b/includes/managers/class-fs-debug-manager.php @@ -382,13 +382,13 @@ private static function get_all_licenses_by_module_type() { } /** + * Moved from the Freemius class. + * * @author Leo Fajardo (@leorw) - * Moved from Freemius * * @return array * * @since 2.5.0 - * */ static function get_all_modules_sites() { Freemius::get_static_logger()->entrance(); diff --git a/start.php b/start.php index 0a3acfd4..0bed9a91 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.8.0'; + $this_sdk_version = '2.8.0.1'; #region SDK Selection Logic --------------------------------------------------------------------