Plugin Directory

Changeset 2378486


Ignore:
Timestamp:
09/10/2020 07:07:25 AM (6 years ago)
Author:
eig
Message:

Fix too few argument issue, bump version to 1.0.3

Location:
eig-sso/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • eig-sso/trunk/eig-sso.php

    r911291 r2378486  
    22/*
    33Plugin Name: EIG-SSO
    4 Version: 1.0.2
     4Version: 1.0.3
    55Description: Securely log in to WordPress from Control Panel without needing a username and password.
    66Author: Endurance International Group
     
    9090        $args = array(
    9191            'role'   => 'administrator',
    92             'fields' => array( 'ID', 'user_login' ),
     92            'fields' => 'all',
    9393            'number' => 1, /* LIMIT 1 */
    9494        );
     
    103103        wp_set_current_user( $admin->ID, $admin->user_login );
    104104        wp_set_auth_cookie( $admin->ID );
    105         do_action( 'wp_login', $admin->user_login );
     105        do_action( 'wp_login', $admin->user_login, $admin );
    106106       
    107107        wp_safe_redirect( admin_url() );
  • eig-sso/trunk/readme.txt

    r2360981 r2378486  
    44Requires at least: 3.3
    55Tested up to: 5.5
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414EIG-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.
    1515
    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.
     16When 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.
    1717
    1818== Installation ==
     
    4343== Screenshots ==
    4444
    45 1. To log in to your WordPress installation, find the Launch WordPress button...
     451. To log in to your WordPress installation, find the Launch WordPress button or 'Manage Site' link...
    4646
    47472. ...and you'll be logged in without needing another username and password.
    4848
    4949== Changelog ==
     50
     511.0.3 - Fix for too few argument issue
    5052
    51531.0.2 - Fix timing issues.
Note: See TracChangeset for help on using the changeset viewer.