Changeset 1958744
- Timestamp:
- 10/18/2018 05:15:52 PM (7 years ago)
- Location:
- thrivehive/trunk
- Files:
-
- 3 edited
-
README.md (modified) (1 diff)
-
lib/login_params.php (modified) (3 diffs)
-
thrivehive.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
thrivehive/trunk/README.md
r1958292 r1958744 107 107 108 108 ## Changelog 109 * V 2.5 2 Added filters109 * V 2.511 Fixed redirect when logging in using params 110 110 * V 2.51 Added Thrivehive Wysiwyg Button widget 111 111 * V 2.5 Added Wysiwyg button functionality -
thrivehive/trunk/lib/login_params.php
r1953286 r1958744 10 10 if(in_array($GLOBALS['pagenow'], array('wp-login.php'))): 11 11 12 //Check that log and pwd are set12 //Check that log and pwd are set 13 13 if(isset($_GET['username']) && isset($_GET['password'])): 14 14 $creds = array(); … … 18 18 19 19 //Where do we go after log-in? 20 $redirect_to = admin_url('profile.php');20 $redirect_to = home_url(); 21 21 22 22 //Try logging in … … 27 27 } else { 28 28 //Logged in, now redirect 29 $redirect_to = admin_url('profile.php');29 $redirect_to = home_url(); 30 30 wp_safe_redirect($redirect_to); 31 31 exit(); -
thrivehive/trunk/thrivehive.php
r1958292 r1958744 5 5 *Plugin URI: http://thrivehive.com 6 6 *Description: A plugin to include ThriveHive's tracking code 7 *Version: 2.5 27 *Version: 2.511 8 8 *Author: ThriveHive 9 9 *Author URI: http://thrivehive.com
Note: See TracChangeset
for help on using the changeset viewer.