Plugin Directory

Changeset 2395447


Ignore:
Timestamp:
10/07/2020 06:55:43 PM (5 years ago)
Author:
globalprogramming
Message:

Force update of Wordpress download - 6.0b2

Location:
whmcs-bridge/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • whmcs-bridge/trunk/bridge.init.php

    r2395352 r2395447  
    44if (!defined('WHMCS_BRIDGE_PAGE')) define('WHMCS_BRIDGE_PAGE','WHMCS');
    55
    6 define("CC_WHMCS_BRIDGE_VERSION","6.0b1");
     6define("CC_WHMCS_BRIDGE_VERSION","6.0b2");
    77
    88if (!defined('PHP_VERSION_ID')) {
     
    529529    }
    530530
    531     if ($cc_whmcs_bridge_to_include=='login') {
     531    if ($cc_whmcs_bridge_to_include=='login' && !empty($news->post['username'])) {
    532532        $news->post['rememberme']='on';
    533533    }
  • whmcs-bridge/trunk/bridge.php

    r2395319 r2395447  
    55 Description: WHMCS Bridge is a plugin that integrates the powerful WHMCS support and billing software with WordPress.
    66 Author: globalprogramming
    7  Version: 6.0b1
     7 Version: 6.0b2
    88 Author URI: http://i-plugins.com/
    99 */
  • whmcs-bridge/trunk/includes/http.class.php

    r2395319 r2395447  
    692692                $this->debug(0, 'Processing redirect...');
    693693
    694                 if (strstr($url, 'login') !== false && class_exists('wpusers')) {
     694                if (strstr($url, 'login') !== false && class_exists('wpusers') && !empty($this->post['username'])) {
    695695                    $this->debug(0, 'Logging in to WordPress with ' . $this->post['username'] . '/' . $this->post['password']);
    696696                    $wpusers = new wpusers();
  • whmcs-bridge/trunk/includes/request.class.php

    r2395319 r2395447  
    620620                $this->debug(0, 'Processing redirect...');
    621621
    622                 if (strstr($url, 'login') !== false && class_exists('wpusers')) {
     622                if (strstr($url, 'login') !== false && class_exists('wpusers') && !empty($this->post['username'])) {
    623623                    $this->debug(0, 'Logging in to WordPress with ' . $this->post['username'] . '/' . $this->post['password']);
    624624                    $wpusers = new wpusers();
  • whmcs-bridge/trunk/readme.txt

    r2395354 r2395447  
    55Requires at least: 5.0
    66Tested up to: 5.5.1
    7 Stable tag: 6.0b1
     7Stable tag: 6.0b2
    88License: GPLv3
    99
     
    7777
    7878== Changelog ==
     79
     80= 6.0b2 =
     81* Fix login link redirect loop
    7982
    8083= 6.0b1 =
Note: See TracChangeset for help on using the changeset viewer.