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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-07-09 12:20:52 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-07-10 17:47:29 +0400
commit10bac565516aab972c9a9bf31dd33127601d6939 (patch)
treeff39f37826efc808cc87e850aed5981030efbecd /lib/private/app.php
parent32c6afba9090635dcab0670d12e47a287ebcddcd (diff)
adding 'groups' entry to remote apps
Diffstat (limited to 'lib/private/app.php')
-rw-r--r--lib/private/app.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/app.php b/lib/private/app.php
index 0bab3c8dbd7..81e74a51675 100644
--- a/lib/private/app.php
+++ b/lib/private/app.php
@@ -506,7 +506,7 @@ class OC_App {
* Get the directory for the given app.
* If the app is defined in multiple directories, the first one is taken. (false if not found)
*
-*@param string $appId
+ * @param string $appId
* @return string|false
*/
public static function getAppPath($appId) {
@@ -899,6 +899,7 @@ class OC_App {
$app1[$i]['ocs_id'] = $app['id'];
$app1[$i]['internal'] = $app1[$i]['active'] = 0;
$app1[$i]['update'] = false;
+ $app1[$i]['groups'] = false;
$app1[$i]['removable'] = false;
if ($app['label'] == 'recommended') {
$app1[$i]['internallabel'] = 'Recommended';