Changeset 1864091
- Timestamp:
- 04/25/2018 10:41:55 AM (8 years ago)
- Location:
- authentiq/trunk
- Files:
-
- 5 edited
-
CHANGELOG.txt (modified) (1 diff)
-
README.txt (modified) (2 diffs)
-
authentiq.php (modified) (2 diffs)
-
includes/class-authentiq-provider.php (modified) (1 diff)
-
public/js/authentiq-public.min.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
authentiq/trunk/CHANGELOG.txt
r1788237 r1864091 1 1 == Changelog == 2 3 = 1.0.4 - 2018-04-25 = 4 5 * Tweak - OAuth2 `state` parameter stored as session cookie. Fixes Issue #1. 2 6 3 7 = 1.0.3 - 2017-12-17 = -
authentiq/trunk/README.txt
r1788237 r1864091 4 4 Requires at least: 4.6 5 5 Tested up to: 4.9 6 Stable tag: 1.0. 36 Stable tag: 1.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 112 112 == Changelog == 113 113 114 = 1.0.4 - 2018-04-25 = 115 116 * Tweak - OAuth2 `state` parameter stored as session cookie. Fixes Issue #1. 117 114 118 = 1.0.3 - 2017-12-17 = 115 119 -
authentiq/trunk/authentiq.php
r1788237 r1864091 4 4 * Plugin URI: https://wordpress.org/plugins/authentiq 5 5 * Description: Sign in (and sign up) to WordPress sites using the Authentiq ID app. Strong authentication, without the passwords. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: The Authentiq Team 8 8 * Author URI: https://www.authentiq.com … … 21 21 define('AUTHENTIQ_PLUGIN_DIR', trailingslashit(plugin_dir_path(__FILE__))); 22 22 define('AUTHENTIQ_PLUGIN_URL', trailingslashit(plugin_dir_url(__FILE__))); 23 define('AUTHENTIQ_VERSION', '1.0. 3');23 define('AUTHENTIQ_VERSION', '1.0.4'); 24 24 define('AUTHENTIQ_NAME', 'authentiq'); 25 25 define('AUTHENTIQ_LANG', AUTHENTIQ_NAME); -
authentiq/trunk/includes/class-authentiq-provider.php
r1788237 r1864091 731 731 732 732 $state = wp_generate_password(24, false); 733 @setcookie(self::$cookie_name, $state, (time() + (60 * 30)), '/', '', is_ssl(), true); 733 // store it as a session cookie 734 @setcookie(self::$cookie_name, $state, 0, '/', '', is_ssl(), true); 734 735 $_COOKIE[self::$cookie_name] = $state; 735 736 -
authentiq/trunk/public/js/authentiq-public.min.js
r1788237 r1864091 1 1 /*! 2 * Authentiq WordPress plugin - v1.0. 32 * Authentiq WordPress plugin - v1.0.4 3 3 * 4 4 * Authentiq
Note: See TracChangeset
for help on using the changeset viewer.