Plugin Directory

Changeset 1743726


Ignore:
Timestamp:
10/10/2017 07:20:57 AM (8 years ago)
Author:
unloqer
Message:

2.1.7

  • Fixed an issue with the prelogged cookie to be set to expire in 2 weeks
Location:
unloq/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • unloq/trunk/autoloader/login/class-login.php

    r1743724 r1743726  
    715715    private function set_prelogged($userName, $secure_cookie)
    716716    {
    717         setcookie('wp_unloq_prelogged', $userName, 14 * 86400, COOKIEPATH, COOKIE_DOMAIN, $secure_cookie, true);
     717        $expire = time() + 60 * 60 * 24 * 14;
     718        setcookie('wp_unloq_prelogged', $userName, $expire, COOKIEPATH, COOKIE_DOMAIN, $secure_cookie, true);
    718719        $_COOKIE['wp_unloq_prelogged'] = $userName;
    719720    }
  • unloq/trunk/readme.txt

    r1743724 r1743726  
    119119
    120120== Changelog ==
     121= 2.1.7 =
     122* Fixed an issue with the prelogged cookie to be set to expire in 2 weeks
    121123= 2.1.6 =
    122124* Re-designed the /unloq path and functionality to better improve the user experience.
  • unloq/trunk/unloq.php

    r1743724 r1743726  
    33 * Plugin Name:       UNLOQ Authentication
    44 * Description:       Perform UNLOQ.io authentications with the click of a button
    5  * Version:           2.1.6
     5 * Version:           2.1.7
    66 * Author:            UNLOQ.io
    77 * Author URI:        https://unloq.io
     
    1818
    1919define('UQ_PLUGIN', 'unloq');
    20 define('UQ_VERSION', '2.1.6');
     20define('UQ_VERSION', '2.1.7');
    2121define('UQ_VENDORS', plugin_dir_url(__FILE__) . 'vendors');
    2222define('UQ_VENDORS_DIR', plugin_dir_path(__FILE__) . 'vendors');
Note: See TracChangeset for help on using the changeset viewer.