HEX
Server: Apache/2.4.65 (Debian)
System: Linux wordpress-7cb4c6b6f6-dr82f 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/post-smtp/freemius/includes/supplements/fs-migration-2.5.1.php
<?php
    /**
     * @package     Freemius
     * @copyright   Copyright (c) 2015, Freemius, Inc.
     * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
     * @since       2.5.1
     */

    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }

    if ( ! function_exists( 'fs_migrate_251' ) ) {
        function fs_migrate_251( Freemius $fs, $install_by_blog_id ) {
            $permission_manager = FS_Permission_Manager::instance( $fs );

            /**
             * @var FS_Site $install
             */
            foreach ( $install_by_blog_id as $blog_id => $install ) {
                if ( true === $install->is_disconnected ) {
                    $permission_manager->update_site_tracking(
                        false,
                        ( 0 == $blog_id ) ? null : $blog_id,
                        // Update only if permissions are not yet set.
                        true
                    );
                }
            }
        }
    }