summaryrefslogtreecommitdiffstats
path: root/lib/Controller
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller')
-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;