Plugin Directory

Changeset 1932531


Ignore:
Timestamp:
08/29/2018 04:07:16 PM (7 years ago)
Author:
shfarr
Message:

moving to version 1.6.1

Location:
identity-plus/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • identity-plus/trunk/identity-plus.php

    r1932034 r1932531  
    55   Plugin URI: https://wordpress.org/plugins/identity-plus
    66   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
    88   Author: Identity +
    99   Author URI: http://identity.plus
  • identity-plus/trunk/lib/identity_plus/api/Communication.php

    r1932034 r1932531  
    357357    public $phone_number;
    358358
    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) {
    360360        $this->type = $type;
    361361        $this->local_user_name = $local_user_name;
  • identity-plus/trunk/lib/initialize.php

    r1932034 r1932531  
    225225        // but just in case so that we know which other users are connected, when they are
    226226        // 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        }
    228230}
    229231
  • identity-plus/trunk/lib/settings_panel.php

    r1932034 r1932531  
    227227            $_SESSION['identity-plus-user-profile'] = $profile;
    228228            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!";
    230230            set_transient("identity_plus_acc_{$user_id}", $error, 45);     
    231231
     
    275275                    'My IdentityPlus',
    276276                    'Device Identity',
    277                     'manage_options',
     277                    'exist',
    278278                    'identity_plus_authentication',
    279279                    'identity_plus_authentication_page',
  • identity-plus/trunk/readme.txt

    r1932034 r1932531  
    8282== Changelog ==
    8383
     84== 1.6.1 ==
     85Minor bug fix
     86
    8487== 1.6 ==
    8588Migrated 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.