diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-09 10:20:52 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-09 11:23:17 +0200 |
commit | 5d2a3c83ac8c086d1f7042cf82bb43d923c87472 (patch) | |
tree | 292560dc1d2f7d4a1965f8514565028c03da7ba1 /lib/private/app.php | |
parent | 1ae6e1bcf8f215ae7fa08fd7714d48959702b40e (diff) | |
download | nextcloud-server-5d2a3c83ac8c086d1f7042cf82bb43d923c87472.tar.gz nextcloud-server-5d2a3c83ac8c086d1f7042cf82bb43d923c87472.zip |
adding 'groups' entry to remote apps
Diffstat (limited to 'lib/private/app.php')
-rw-r--r-- | lib/private/app.php | 3 |
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'; |