summaryrefslogtreecommitdiffstats
path: root/lib/Controller/NavigationController.php
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-04-20 13:04:35 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-05-03 16:31:15 -0100
commite70f67cea9666047d168e7c6f1326f3b7c96c8b0 (patch)
treeadd3620fef22f7bce72047ecbfd95e488322fe8e /lib/Controller/NavigationController.php
parent9038dc4fb44b6404da5e2f7e7d303c81c186e669 (diff)
small fixes
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Controller/NavigationController.php')
-rw-r--r--lib/Controller/NavigationController.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Controller/NavigationController.php b/lib/Controller/NavigationController.php
index fd2ae48c..2621c7c0 100644
--- a/lib/Controller/NavigationController.php
+++ b/lib/Controller/NavigationController.php
@@ -189,15 +189,15 @@ class NavigationController extends Controller {
}
private function setupCloudAddress(): string {
- $frontControllerActive =
- ($this->config->getSystemValue('htaccess.IgnoreFrontController', false) === true
- || getenv('front_controller_active') === 'true');
+// $frontControllerActive =
+// ($this->config->getSystemValue('htaccess.IgnoreFrontController', false) === true
+// || getenv('front_controller_active') === 'true');
$cloudAddress = rtrim($this->config->getSystemValue('overwrite.cli.url', ''), '/');
if ($cloudAddress !== '') {
- if (!$frontControllerActive) {
- $cloudAddress .= '/index.php';
- }
+// if (!$frontControllerActive) {
+// $cloudAddress .= '/index.php';
+// }
$this->configService->setCloudAddress($cloudAddress);
return $cloudAddress;