Changeset 2378486
- Timestamp:
- 09/10/2020 07:07:25 AM (6 years ago)
- Location:
- eig-sso/trunk
- Files:
-
- 2 edited
-
eig-sso.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eig-sso/trunk/eig-sso.php
r911291 r2378486 2 2 /* 3 3 Plugin Name: EIG-SSO 4 Version: 1.0. 24 Version: 1.0.3 5 5 Description: Securely log in to WordPress from Control Panel without needing a username and password. 6 6 Author: Endurance International Group … … 90 90 $args = array( 91 91 'role' => 'administrator', 92 'fields' => array( 'ID', 'user_login' ),92 'fields' => 'all', 93 93 'number' => 1, /* LIMIT 1 */ 94 94 ); … … 103 103 wp_set_current_user( $admin->ID, $admin->user_login ); 104 104 wp_set_auth_cookie( $admin->ID ); 105 do_action( 'wp_login', $admin->user_login );105 do_action( 'wp_login', $admin->user_login, $admin ); 106 106 107 107 wp_safe_redirect( admin_url() ); -
eig-sso/trunk/readme.txt
r2360981 r2378486 4 4 Requires at least: 3.3 5 5 Tested up to: 5.5 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 EIG-SSO is a single sign on plugin that allows customers of Endurance International Group brands (FatCow, iPage, IPOWER, and others) to sign on to their WordPress installations without needing to remember an additional username and password. 15 15 16 When installed and activated, this plugin will detect single sign on (SSO) attempts when requested by an authenticated user. On the Control Panel side, the user need only click on the "Launch WordPress" button to be signed in to their WordPress installation.16 When installed and activated, this plugin will detect single sign on (SSO) attempts when requested by an authenticated user. On the Control Panel side, the user need only click on the "Launch WordPress" button or 'Manage Site' link to be signed in to their WordPress installation. 17 17 18 18 == Installation == … … 43 43 == Screenshots == 44 44 45 1. To log in to your WordPress installation, find the Launch WordPress button ...45 1. To log in to your WordPress installation, find the Launch WordPress button or 'Manage Site' link... 46 46 47 47 2. ...and you'll be logged in without needing another username and password. 48 48 49 49 == Changelog == 50 51 1.0.3 - Fix for too few argument issue 50 52 51 53 1.0.2 - Fix timing issues.
Note: See TracChangeset
for help on using the changeset viewer.