Completed
Push — master ( a3c786...0daede )
by Julius
12s
created
controller/appcontroller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,9 +58,9 @@
 block discarded – undo
58 58
 		} else {
59 59
 			$appId = 'files';
60 60
 			if (getenv('front_controller_active') === 'true') {
61
-				$firstPage = $this->urlGenerator->getAbsoluteURL('/apps/' . $appId . '/');
61
+				$firstPage = $this->urlGenerator->getAbsoluteURL('/apps/'.$appId.'/');
62 62
 			} else {
63
-				$firstPage = $this->urlGenerator->getAbsoluteURL('/index.php/apps/' . $appId . '/');
63
+				$firstPage = $this->urlGenerator->getAbsoluteURL('/index.php/apps/'.$appId.'/');
64 64
 			}
65 65
 		}
66 66
 		return new RedirectResponse($firstPage);
Please login to merge, or discard this patch.
util.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		foreach ($nav as $app) {
53 53
 			$nav_tmp[$app['href']] = $app;
54 54
 		}
55
-		if(is_array($order)) {
55
+		if (is_array($order)) {
56 56
 			foreach ($order as $app) {
57 57
 				if (array_key_exists($app, $nav_tmp)) {
58 58
 					$result[$app] = $nav_tmp[$app];
Please login to merge, or discard this patch.