]> git.mxchange.org Git - friendica.git/commitdiff
fix isssue if friendica is installed into a subdirectory
authorrabuzarus <rabuzarus@t-online.de>
Wed, 30 Jan 2019 00:00:40 +0000 (01:00 +0100)
committerrabuzarus <rabuzarus@t-online.de>
Wed, 30 Jan 2019 00:00:40 +0000 (01:00 +0100)
src/App.php

index 0015405c46bea5892cc634282f50c6c87d62d3f8..b910765e12f02c35719523d9c9393c6a2cfd86f6 100644 (file)
@@ -703,7 +703,7 @@ class App
                        $this->hostname = Core\Config::get('config', 'hostname');
                }
 
-               return $scheme . '://' . $this->hostname . !empty($this->getURLPath() ? '/' . $this->getURLPath() : '' );
+               return $scheme . '://' . $this->hostname . (!empty($this->getURLPath()) ? '/' . $this->getURLPath() : '' );
        }
 
        /**