Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/NavigationController.php')
-rw-r--r--lib/Controller/NavigationController.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/Controller/NavigationController.php b/lib/Controller/NavigationController.php
index 1fbf705..cded213 100644
--- a/lib/Controller/NavigationController.php
+++ b/lib/Controller/NavigationController.php
@@ -91,17 +91,13 @@ class NavigationController extends Controller {
* @return TemplateResponse
*/
public function navigate(): TemplateResponse {
-
$themingName = $this->config->getAppValue('theming', 'name', 'Nextcloud');
-
- $data = [
- 'themingName' => $themingName
- ];
+ $data = ['themingName' => $themingName];
$this->fullTextSearchManager->addJavascriptAPI();
return new TemplateResponse(Application::APP_NAME, 'navigate', $data);
}
-
}
+