From 650ef3331a92bac717f5501b79c01e2579506499 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 29 Sep 2014 20:53:19 +0200 Subject: fix manifest test --- controller/appcontroller.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'controller') diff --git a/controller/appcontroller.php b/controller/appcontroller.php index e3d86a945..eea068d24 100644 --- a/controller/appcontroller.php +++ b/controller/appcontroller.php @@ -38,13 +38,13 @@ class AppController extends Controller { /** * @NoCSRFRequired * @PublicPage - * + * * Generates a web app manifest, according to specs in: * https://developer.mozilla.org/en-US/Apps/Build/Manifest */ public function manifest() { $config = $this->appConfig->getConfig(); - + // size of the icons: 128x128 is required by FxOS for all app manifests $iconSizes = ['128', '512']; $icons = []; @@ -57,19 +57,17 @@ class AppController extends Controller { } } - $params = [ + return [ "name" => $config['name'], "description" => $config['description'], "launch_path" => $this->urlGenerator->linkToRoute( $config['id'] . '.page.index'), - "icons" => $icons, + "icons" => $icons, "developer" => [ "name" => "ownCloud community", "url" => $config['homepage'] - ], + ] ]; - - return $params; } } \ No newline at end of file -- cgit v1.2.3