From 1ca33d6b5a509ff0c4113521ab8109bc55bdc442 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 29 Sep 2014 21:00:12 +0200 Subject: add author names to manifest file --- controller/appcontroller.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'controller') diff --git a/controller/appcontroller.php b/controller/appcontroller.php index eea068d24..138668950 100644 --- a/controller/appcontroller.php +++ b/controller/appcontroller.php @@ -57,6 +57,11 @@ class AppController extends Controller { } } + $authors = []; + foreach ($config['authors'] as $author) { + $authors[] = $author['name']; + } + return [ "name" => $config['name'], "description" => $config['description'], @@ -64,7 +69,7 @@ class AppController extends Controller { $config['id'] . '.page.index'), "icons" => $icons, "developer" => [ - "name" => "ownCloud community", + "name" => implode(', ', $authors), "url" => $config['homepage'] ] ]; -- cgit v1.2.3