Plugin Directory

Changeset 3324593


Ignore:
Timestamp:
07/08/2025 08:45:40 PM (8 months ago)
Author:
rsecurewp
Message:

Fixed Activity Logs

Location:
rainbow-secure/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rainbow-secure/trunk/inc/functions.php

    r3321484 r3324593  
    11351135
    11361136function rainbow_secure_display_activity_log_table() {
    1137     $response = wp_remote_get('https://www.rsecureoffice.com/sso/rs_get_wpusersactivitylog.aspx?AppToken=5D661544-257C-48B5-8A58-F0EA3B15F04E');
    1138 
     1137    $app_token = get_option('rainbow_secure_app_token');
     1138    $response = wp_remote_get("https://www.rsecureoffice.com/sso/rs_get_wpusersactivitylog.aspx?AppToken=$app_token");
    11391139    if (is_wp_error($response)) {
    11401140        echo '<p style="color:red;">Failed to fetch activity logs: ' . $response->get_error_message() . '</p>';
     
    12151215
    12161216function rainbow_send_activity_email_callback() {
     1217    $app_token = get_option('rainbow_secure_app_token');
    12171218    $duration = intval($_POST['duration']);
    12181219    $user = wp_get_current_user();
     
    12201221
    12211222    $url = "https://www.rsecureoffice.com/sso/rs_get_wpusersactivitylog.aspx?" . http_build_query([
    1222         'AppToken' => '5D661544-257C-48B5-8A58-F0EA3B15F04E',
     1223        'AppToken' => $app_token,
    12231224        'deliverymode' => 'email',
    12241225        'durationindays' => $duration,
  • rainbow-secure/trunk/rainbow-secure.php

    r3321484 r3324593  
    88Plugin URI: https://rainbowsecure.com
    99Description: Rainbow Secure MFA and SSO Plugin, allows you to secure your website with an interactive multi-layer security and get single sign on.
    10 Version: 1.1.0
     10Version: 1.2.0
    1111Author: Rainbow Secure
    1212License: GPLv2 or later
  • rainbow-secure/trunk/readme.txt

    r3321484 r3324593  
    44Requires at least: 5.0
    55Tested up to: 6.6
    6 Stable tag: 1.1.0
     6Stable tag: 1.2.0
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    8888== Changelog ==
    8989
    90 = 1.1.0 = 
     90= 1.2.0 = 
    9191* Initial release of Rainbow Secure 
    9292* Multi-Factor Authentication (MFA) options including OTP and Adaptive Authentication 
     
    9999== Upgrade Notice ==
    100100
    101 = 1.1.0 = 
     101= 1.2.0 = 
    102102Initial release with MFA and SSO support. Configure MFA options and security policies for enhanced protection.
    103103
Note: See TracChangeset for help on using the changeset viewer.