Changeset 1932531
- Timestamp:
- 08/29/2018 04:07:16 PM (7 years ago)
- Location:
- identity-plus/trunk
- Files:
-
- 5 edited
-
identity-plus.php (modified) (1 diff)
-
lib/identity_plus/api/Communication.php (modified) (1 diff)
-
lib/initialize.php (modified) (1 diff)
-
lib/settings_panel.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
identity-plus/trunk/identity-plus.php
r1932034 r1932531 5 5 Plugin URI: https://wordpress.org/plugins/identity-plus 6 6 Description: Connect your WordPress with Identity + and enable invisible 2 factor authentication, secured SSO, SSL Client Certificate based access on select pages and join the Identity + network of trust where devices and people are anonymousely rated based on how they behave. 7 Version: 1.6 7 Version: 1.6.1 8 8 Author: Identity + 9 9 Author URI: http://identity.plus -
identity-plus/trunk/lib/identity_plus/api/Communication.php
r1932034 r1932531 357 357 public $phone_number; 358 358 359 public function __construct($type, $ serial_number, $local_user_name, $name, $email_address, $phone_number, $return_url) {359 public function __construct($type, $local_user_name, $name, $email_address, $phone_number, $return_url) { 360 360 $this->type = $type; 361 361 $this->local_user_name = $local_user_name; -
identity-plus/trunk/lib/initialize.php
r1932034 r1932531 225 225 // but just in case so that we know which other users are connected, when they are 226 226 // not necessarily on-line 227 if(is_user_logged_in() && isset($profile->local_user_name)) add_user_meta(wp_get_current_user()->ID, "identity-plus-bound", $profile->local_user_name, true); 227 if(is_user_logged_in() && isset($profile->local_user_name)){ 228 update_user_meta(wp_get_current_user()->ID, "identity-plus-bound", $profile->local_user_name); 229 } 228 230 } 229 231 -
identity-plus/trunk/lib/settings_panel.php
r1932034 r1932531 227 227 $_SESSION['identity-plus-user-profile'] = $profile; 228 228 add_user_meta($user_id, 'identity-plus-bound', $user_id); 229 $error = "I: Your wordpress account and your identity plus account have been connected!";229 $error = "I: Your wordpress account and your identity plus account have been connected!"; 230 230 set_transient("identity_plus_acc_{$user_id}", $error, 45); 231 231 … … 275 275 'My IdentityPlus', 276 276 'Device Identity', 277 ' manage_options',277 'exist', 278 278 'identity_plus_authentication', 279 279 'identity_plus_authentication_page', -
identity-plus/trunk/readme.txt
r1932034 r1932531 82 82 == Changelog == 83 83 84 == 1.6.1 == 85 Minor bug fix 86 84 87 == 1.6 == 85 88 Migrated to v1.1 Identityplus API. Identityplus plugin now allows individual wordpress users to connect their accounts on-demand. This new version also lifted the 10 accounts limit for non-corporate certificates, meaning that not-for-profit sites (public benefit or personal sites that produce no revenue) can connect any number of accounts at no cost.
Note: See TracChangeset
for help on using the changeset viewer.