]> git.mxchange.org Git - friendica.git/commitdiff
ping.php improvement: using baser cache key
authorHypolite Petovan <mrpetovan@gmail.com>
Mon, 31 Oct 2016 18:27:19 +0000 (14:27 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 31 Oct 2016 18:27:19 +0000 (14:27 -0400)
boot.php

index 5df6520dbdaf92f178e0121f29de73ce35a3840c..8dd43101c044070ccf8524c964c7e7e3820dd915 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -800,7 +800,9 @@ class App {
                        return self::$a->get_baseurl($ssl);
                }
 
-               if (!isset($this->baseurl[$ssl ? 'https' : 'http'])) {
+               $cache_index = $ssl ? 'https' : 'http';
+
+               if (!isset($this->baseurl[$cache_index])) {
                        $scheme = $this->scheme;
 
                        if ((x($this->config, 'system')) && (x($this->config['system'], 'ssl_policy'))) {
@@ -824,9 +826,9 @@ class App {
                                $this->hostname = get_config('config', 'hostname');
                        }
 
-                       $this->baseurl[$ssl ? 'https' : 'http'] = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
+                       $this->baseurl[$cache_index] = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
                }
-               return $this->baseurl[$ssl ? 'https' : 'http'];
+               return $this->baseurl[$cache_index];
        }
 
        /**