Plugin Directory

Changeset 3190752


Ignore:
Timestamp:
11/17/2024 06:31:31 PM (16 months ago)
Author:
rsecurewp
Message:

Update - Removed date validation for activation key

File:
1 edited

Legend:

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

    r3164550 r3190752  
    686686        // Check if the valid_upto date is valid and in the future
    687687        $valid_upto_timestamp = strtotime($valid_upto);
    688         if ($valid_upto_timestamp && $valid_upto_timestamp > time()) {
     688        if ($valid_upto_timestamp) {
    689689            return true;
    690690        }
Note: See TracChangeset for help on using the changeset viewer.