Skip to content
This repository has been archived by the owner on Jul 29, 2023. It is now read-only.

Commit

Permalink
Client login link fix
Browse files Browse the repository at this point in the history
Fixed wrong var in client login link.
  • Loading branch information
cwispy authored Dec 29, 2016
1 parent 6260004 commit 46de1eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ispcfg3.php
Original file line number Diff line number Diff line change
Expand Up @@ -1353,8 +1353,8 @@ function ispcfg3_LoginLink( $params ) {
function ispcfg3_ClientArea( $params ) {
global $server_url;
global $domain_url;
$server_url = ($params['configoption4'] == 'on') ? 'https://' : 'http://';
$server_url .= $params['configoption3'];
$soapsvrurl = ($params['configoption4'] == 'on') ? 'https://' : 'http://';
$soapsvrurl .= $params['configoption3'];
$domain_url = ($params['configoption4'] == 'on' ? 'https://' : 'http://').$params['domain'];

$requestedView = isset($_REQUEST['view']) ? $_REQUEST['view'] : '';
Expand Down

0 comments on commit 46de1eb

Please sign in to comment.