Plugin Directory

Changeset 1958744


Ignore:
Timestamp:
10/18/2018 05:15:52 PM (7 years ago)
Author:
thrivehive
Message:

v2.511

Location:
thrivehive/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • thrivehive/trunk/README.md

    r1958292 r1958744  
    107107
    108108## Changelog
    109 * V 2.52 Added filters
     109* V 2.511 Fixed redirect when logging in using params
    110110* V 2.51 Added Thrivehive Wysiwyg Button widget
    111111* V 2.5 Added Wysiwyg button functionality
  • thrivehive/trunk/lib/login_params.php

    r1953286 r1958744  
    1010  if(in_array($GLOBALS['pagenow'], array('wp-login.php'))):
    1111
    12   //Check that log and pwd are set
     12    //Check that log and pwd are set
    1313    if(isset($_GET['username']) && isset($_GET['password'])):
    1414      $creds = array();
     
    1818
    1919      //Where do we go after log-in?
    20       $redirect_to = admin_url('profile.php');
     20      $redirect_to = home_url();
    2121
    2222      //Try logging in
     
    2727      } else {
    2828        //Logged in, now redirect
    29         $redirect_to = admin_url('profile.php');
     29        $redirect_to = home_url();
    3030        wp_safe_redirect($redirect_to);
    3131        exit();
  • thrivehive/trunk/thrivehive.php

    r1958292 r1958744  
    55   *Plugin URI: http://thrivehive.com
    66   *Description: A plugin to include ThriveHive's tracking code
    7    *Version: 2.52
     7   *Version: 2.511
    88   *Author: ThriveHive
    99   *Author URI: http://thrivehive.com
Note: See TracChangeset for help on using the changeset viewer.