Plugin Directory

Changeset 3007999


Ignore:
Timestamp:
12/11/2023 09:38:58 AM (2 years ago)
Author:
icdsoft
Message:

Release version 1.0.1

Location:
multimanager-wp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • multimanager-wp/trunk/README.txt

    r3003650 r3007999  
    44Requires at least: 6.0
    55Tested up to: 6.4
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6565== Changelog ==
    6666
     67= 1.0.1 =
     68* Fix - Fix Impersonate Login
     69
    6770= 1.0.0 =
    6871* Initial release.
  • multimanager-wp/trunk/includes/class-multi-manager-wp-rest-api.php

    r2986395 r3007999  
    376376        $data['nonce'] = wp_create_nonce( $action . ':' . $admin_name );
    377377
     378        wp_cache_flush();
    378379        return new WP_REST_Response( $data, 200 );
    379380    }
     
    625626        $plugins        = [];
    626627        wp_update_plugins();
     628        wp_cache_flush();
    627629
    628630        foreach ( get_plugins() as $file => $data ) {
     
    10671069            wp_set_current_user( $user->ID );
    10681070            wp_set_auth_cookie( $user->ID );
    1069             do_action( 'wp_login', $user->user_login );
     1071            do_action( 'wp_login', $user->user_login, $user );
    10701072
    10711073            return ( is_user_logged_in() and $current_user->user_login === $username );
  • multimanager-wp/trunk/multimanager-wp.php

    r2986395 r3007999  
    55 * Plugin URI:        https://www.icdsoft.com/en/hosting/wordpress-manager
    66 * Description:       This plugin helps you connect your site to the ICDSoft WordPress MultiManager toolkit, which allows you to manage multiple WordPress sites.
    7  * Version:           1.0.0
     7 * Version:           1.0.1
    88 * Author:            ICDSoft Hosting
    99 * Author URI:        https://icdsoft.com
     
    2020 * Plugin version.
    2121 */
    22 const MULTIMANAGER_WP_VERSION = '1.0.0';
     22const MULTIMANAGER_WP_VERSION = '1.0.1';
    2323
    2424/**
Note: See TracChangeset for help on using the changeset viewer.