PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /usr/src/litespeed-wp-plugin/5.5/litespeed-cache/thirdparty/ |
| Server: Linux red.truehostdns.com 4.18.0-553.150.1.el8_10.x86_64 #1 SMP Fri Jul 31 15:23:31 EDT 2026 x86_64 IP: 51.161.15.103 |
| Dir : //usr/src/litespeed-wp-plugin/5.5/litespeed-cache/thirdparty/user-switching.cls.php |
<?php
/**
* The Third Party integration with User Switching.
*
* @since 3.0
*/
namespace LiteSpeed\Thirdparty;
defined( 'WPINC' ) || exit;
class User_Switching
{
public static function detect()
{
if ( ! defined( 'user_switching' ) ) return;
/**
* Register switch back URL nonce
* @since 3.0 @Robert Staddon
*/
if ( function_exists( 'current_user_switched' ) && $old_user = current_user_switched() ) {
do_action( 'litespeed_nonce', 'switch_to_olduser_' . $old_user->ID );
}
}
}