Plugin Directory

Changeset 2195674


Ignore:
Timestamp:
11/18/2019 01:55:43 PM (6 years ago)
Author:
SecSign
Message:

version 1.7.17

Location:
secsign/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • secsign/trunk/jsApi/SecSignIDApi.js

    r2052662 r2195674  
    11/*!
    2  * (c) 2014 - 2018 SecSign Technologies Inc.
     2 * (c) 2014 - 2019 SecSign Technologies Inc.
    33 */
    44 
  • secsign/trunk/jsApi/signin-bridge.php

    r1892046 r2195674  
    44// SecSign ID Api php bridge to redirect requests sent by javascript.
    55//
    6 // (c) 2014-2016 SecSign Technologies Inc.
     6// (c) 2014-2019 SecSign Technologies Inc.
    77//
    88
  • secsign/trunk/readme.txt

    r2052673 r2195674  
    33Tags: two-factor authentication, two-factor, authentication, 2 factor authentication, login, sign in, single sign-on, challenge response, rsa, password, mobile, iphone, android, security, authenticator, authenticate, two step authentication, 2fa, tfa
    44Requires at least: 3.0.1
    5 Tested up to: 5.1.1
     5Tested up to: 5.3
    66Stable tag: trunk
    77License: GPLv2 or later
     
    170170== Changelog ==
    171171
     172= 1.7.17 =
     173* Fixed Password Login Problems on Wordpress 5.3
     174* Added new JS API
     175* Tested WP compatibility for Wordpress 5.3
     176
     177Note: Due to changes at the javascript files, please flush the page cache or any other cache you are using to have the updated files within the browser.
     178
    172179= 1.7.16 =
    173180* Added new PHP API
  • secsign/trunk/secsignfunctions.js

    r1784672 r2195674  
    33 * components menu of the back end is selected.
    44 *
    5  * @copyright    Copyright (C) 2014 - 2016 SecSign Technologies Inc. All rights reserved.
     5 * @copyright    Copyright (C) 2014 - 2019 SecSign Technologies Inc. All rights reserved.
    66 * @license      GNU General Public License version 2 or later; see LICENSE.txt.
    77 */
     
    2323
    2424});
     25
     26function switchToPasswordScreen()
     27{
     28    jQuery("#secsignid-page-pw").fadeIn(function(){
     29        //enable PW field because of changes in user-profile.js in Wordpress 5.3
     30        jQuery('#secsignidplugin').find('#user_pass').prop('disabled', false);
     31    });
     32}
    2533
    2634//empty username & password check
     
    278286                function () {
    279287                    docCookies.setItem('secsignLoginPw', 'true', 2592000);
    280                     jQuery("#secsignid-page-pw").fadeIn();
     288                    switchToPasswordScreen();
    281289                }
    282290            );
     
    457465            jQuery("#secsignid-page-login").fadeOut(
    458466                function () {
    459                     jQuery("#secsignid-page-pw").fadeIn();
     467                    switchToPasswordScreen();
    460468                }
    461469            );
  • secsign/trunk/secsignid_layout.css

    r1486368 r2195674  
    11/**
    2  
    3 // $Id: secsignid_layout.css,v 1.6 2015/04/23 15:42:22 titus Exp $
    4 
    5 */
     2 *
     3 * @copyright    Copyright (C) 2014 - 2019 SecSign Technologies Inc. All rights reserved.
     4 *
     5 */
    66 
    77
     
    389389    margin: 0;
    390390    padding: 0;
     391    border: none;
    391392}
    392393
  • secsign/trunk/secsignid_login.php

    r2052662 r2195674  
    33Plugin Name: SecSign
    44Plugin URI: https://www.secsign.com/wordpress-tutorial/
    5 Version: 1.7.16
     5Version: 1.7.17
    66Description: Two-factor authentication (2FA) with the SecSign ID. The SecSign plugin allows a user to login using his SecSign ID and his smartphone.
    77Author: SecSign Technologies Inc.
    88Author URI: http://www.secsign.com
    99*/
     10
     11//
     12// secsignid_login.php
     13//
     14// (c) 2014-2019 SecSign Technologies Inc.
     15//
    1016
    1117global $secsignid_login_text_domain;
  • secsign/trunk/secsignid_login_admin.php

    r1981260 r2195674  
    11<?php
     2
     3//
     4// secsignid_login_admin.php
     5//
     6// (c) 2014-2019 SecSign Technologies Inc.
     7//
     8
    29
    310// for all hooks, see http://adambrown.info/p/wp_hooks
  • secsign/trunk/secsignid_login_db.php

    r1223760 r2195674  
    11<?php
     2    //
     3    // secsignid_login_db.php
     4    //
     5    // (c) 2014-2019 SecSign Technologies Inc.
     6    //
    27
    38    add_action('plugins_loaded', 'check_database_table'); // wordpress calls this function whenever plugins are loaded
Note: See TracChangeset for help on using the changeset viewer.