Changeset 1743726
- Timestamp:
- 10/10/2017 07:20:57 AM (8 years ago)
- Location:
- unloq/trunk
- Files:
-
- 3 edited
-
autoloader/login/class-login.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
unloq.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
unloq/trunk/autoloader/login/class-login.php
r1743724 r1743726 715 715 private function set_prelogged($userName, $secure_cookie) 716 716 { 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); 718 719 $_COOKIE['wp_unloq_prelogged'] = $userName; 719 720 } -
unloq/trunk/readme.txt
r1743724 r1743726 119 119 120 120 == Changelog == 121 = 2.1.7 = 122 * Fixed an issue with the prelogged cookie to be set to expire in 2 weeks 121 123 = 2.1.6 = 122 124 * Re-designed the /unloq path and functionality to better improve the user experience. -
unloq/trunk/unloq.php
r1743724 r1743726 3 3 * Plugin Name: UNLOQ Authentication 4 4 * Description: Perform UNLOQ.io authentications with the click of a button 5 * Version: 2.1. 65 * Version: 2.1.7 6 6 * Author: UNLOQ.io 7 7 * Author URI: https://unloq.io … … 18 18 19 19 define('UQ_PLUGIN', 'unloq'); 20 define('UQ_VERSION', '2.1. 6');20 define('UQ_VERSION', '2.1.7'); 21 21 define('UQ_VENDORS', plugin_dir_url(__FILE__) . 'vendors'); 22 22 define('UQ_VENDORS_DIR', plugin_dir_path(__FILE__) . 'vendors');
Note: See TracChangeset
for help on using the changeset viewer.