ping.php performance: fix formatting
This commit is contained in:
parent
9e127abbae
commit
cc4363c5c6
1 changed files with 7 additions and 6 deletions
5
boot.php
5
boot.php
|
@ -793,15 +793,16 @@ class App {
|
|||
|
||||
// Is the function called statically?
|
||||
if (!is_object($this)) {
|
||||
return(self::$a->get_baseurl($ssl));
|
||||
return self::$a->get_baseurl($ssl);
|
||||
}
|
||||
|
||||
if (!isset($this->baseurl[$ssl ? 'https' : 'http'])) {
|
||||
$scheme = $this->scheme;
|
||||
|
||||
if ((x($this->config, 'system')) && (x($this->config['system'], 'ssl_policy'))) {
|
||||
if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
|
||||
if (intval($this->config['system']['ssl_policy']) === SSL_POLICY_FULL) {
|
||||
$scheme = 'https';
|
||||
}
|
||||
|
||||
// Basically, we have $ssl = true on any links which can only be seen by a logged in user
|
||||
// (and also the login link). Anything seen by an outsider will have it turned off.
|
||||
|
|
Loading…
Reference in a new issue