Changeset 2195674
- Timestamp:
- 11/18/2019 01:55:43 PM (6 years ago)
- Location:
- secsign/trunk
- Files:
-
- 8 edited
-
jsApi/SecSignIDApi.js (modified) (1 diff)
-
jsApi/signin-bridge.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
secsignfunctions.js (modified) (4 diffs)
-
secsignid_layout.css (modified) (2 diffs)
-
secsignid_login.php (modified) (1 diff)
-
secsignid_login_admin.php (modified) (1 diff)
-
secsignid_login_db.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
secsign/trunk/jsApi/SecSignIDApi.js
r2052662 r2195674 1 1 /*! 2 * (c) 2014 - 201 8SecSign Technologies Inc.2 * (c) 2014 - 2019 SecSign Technologies Inc. 3 3 */ 4 4 -
secsign/trunk/jsApi/signin-bridge.php
r1892046 r2195674 4 4 // SecSign ID Api php bridge to redirect requests sent by javascript. 5 5 // 6 // (c) 2014-201 6SecSign Technologies Inc.6 // (c) 2014-2019 SecSign Technologies Inc. 7 7 // 8 8 -
secsign/trunk/readme.txt
r2052673 r2195674 3 3 Tags: 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 4 4 Requires at least: 3.0.1 5 Tested up to: 5. 1.15 Tested up to: 5.3 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 170 170 == Changelog == 171 171 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 177 Note: 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 172 179 = 1.7.16 = 173 180 * Added new PHP API -
secsign/trunk/secsignfunctions.js
r1784672 r2195674 3 3 * components menu of the back end is selected. 4 4 * 5 * @copyright Copyright (C) 2014 - 201 6SecSign Technologies Inc. All rights reserved.5 * @copyright Copyright (C) 2014 - 2019 SecSign Technologies Inc. All rights reserved. 6 6 * @license GNU General Public License version 2 or later; see LICENSE.txt. 7 7 */ … … 23 23 24 24 }); 25 26 function 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 } 25 33 26 34 //empty username & password check … … 278 286 function () { 279 287 docCookies.setItem('secsignLoginPw', 'true', 2592000); 280 jQuery("#secsignid-page-pw").fadeIn();288 switchToPasswordScreen(); 281 289 } 282 290 ); … … 457 465 jQuery("#secsignid-page-login").fadeOut( 458 466 function () { 459 jQuery("#secsignid-page-pw").fadeIn();467 switchToPasswordScreen(); 460 468 } 461 469 ); -
secsign/trunk/secsignid_layout.css
r1486368 r2195674 1 1 /** 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 */ 6 6 7 7 … … 389 389 margin: 0; 390 390 padding: 0; 391 border: none; 391 392 } 392 393 -
secsign/trunk/secsignid_login.php
r2052662 r2195674 3 3 Plugin Name: SecSign 4 4 Plugin URI: https://www.secsign.com/wordpress-tutorial/ 5 Version: 1.7.1 65 Version: 1.7.17 6 6 Description: Two-factor authentication (2FA) with the SecSign ID. The SecSign plugin allows a user to login using his SecSign ID and his smartphone. 7 7 Author: SecSign Technologies Inc. 8 8 Author URI: http://www.secsign.com 9 9 */ 10 11 // 12 // secsignid_login.php 13 // 14 // (c) 2014-2019 SecSign Technologies Inc. 15 // 10 16 11 17 global $secsignid_login_text_domain; -
secsign/trunk/secsignid_login_admin.php
r1981260 r2195674 1 1 <?php 2 3 // 4 // secsignid_login_admin.php 5 // 6 // (c) 2014-2019 SecSign Technologies Inc. 7 // 8 2 9 3 10 // for all hooks, see http://adambrown.info/p/wp_hooks -
secsign/trunk/secsignid_login_db.php
r1223760 r2195674 1 1 <?php 2 // 3 // secsignid_login_db.php 4 // 5 // (c) 2014-2019 SecSign Technologies Inc. 6 // 2 7 3 8 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.