Changeset 2395447
- Timestamp:
- 10/07/2020 06:55:43 PM (5 years ago)
- Location:
- whmcs-bridge/trunk
- Files:
-
- 5 edited
-
bridge.init.php (modified) (2 diffs)
-
bridge.php (modified) (1 diff)
-
includes/http.class.php (modified) (1 diff)
-
includes/request.class.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
whmcs-bridge/trunk/bridge.init.php
r2395352 r2395447 4 4 if (!defined('WHMCS_BRIDGE_PAGE')) define('WHMCS_BRIDGE_PAGE','WHMCS'); 5 5 6 define("CC_WHMCS_BRIDGE_VERSION","6.0b 1");6 define("CC_WHMCS_BRIDGE_VERSION","6.0b2"); 7 7 8 8 if (!defined('PHP_VERSION_ID')) { … … 529 529 } 530 530 531 if ($cc_whmcs_bridge_to_include=='login' ) {531 if ($cc_whmcs_bridge_to_include=='login' && !empty($news->post['username'])) { 532 532 $news->post['rememberme']='on'; 533 533 } -
whmcs-bridge/trunk/bridge.php
r2395319 r2395447 5 5 Description: WHMCS Bridge is a plugin that integrates the powerful WHMCS support and billing software with WordPress. 6 6 Author: globalprogramming 7 Version: 6.0b 17 Version: 6.0b2 8 8 Author URI: http://i-plugins.com/ 9 9 */ -
whmcs-bridge/trunk/includes/http.class.php
r2395319 r2395447 692 692 $this->debug(0, 'Processing redirect...'); 693 693 694 if (strstr($url, 'login') !== false && class_exists('wpusers') ) {694 if (strstr($url, 'login') !== false && class_exists('wpusers') && !empty($this->post['username'])) { 695 695 $this->debug(0, 'Logging in to WordPress with ' . $this->post['username'] . '/' . $this->post['password']); 696 696 $wpusers = new wpusers(); -
whmcs-bridge/trunk/includes/request.class.php
r2395319 r2395447 620 620 $this->debug(0, 'Processing redirect...'); 621 621 622 if (strstr($url, 'login') !== false && class_exists('wpusers') ) {622 if (strstr($url, 'login') !== false && class_exists('wpusers') && !empty($this->post['username'])) { 623 623 $this->debug(0, 'Logging in to WordPress with ' . $this->post['username'] . '/' . $this->post['password']); 624 624 $wpusers = new wpusers(); -
whmcs-bridge/trunk/readme.txt
r2395354 r2395447 5 5 Requires at least: 5.0 6 6 Tested up to: 5.5.1 7 Stable tag: 6.0b 17 Stable tag: 6.0b2 8 8 License: GPLv3 9 9 … … 77 77 78 78 == Changelog == 79 80 = 6.0b2 = 81 * Fix login link redirect loop 79 82 80 83 = 6.0b1 =
Note: See TracChangeset
for help on using the changeset viewer.