diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-03 12:59:51 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-03 12:59:51 +0100 |
commit | 0af2ea8b281c5c37a27b0bb4840f23419d399fe9 (patch) | |
tree | 9a25400772079c43b7f20dfd27d7a3359ed38e5b /config | |
parent | 29ecbc8c6c714c6230b0b3c742f89398ce614247 (diff) | |
parent | 7452d0434a712db628ac8a0d0c5f22543a210633 (diff) | |
download | nextcloud-server-0af2ea8b281c5c37a27b0bb4840f23419d399fe9.tar.gz nextcloud-server-0af2ea8b281c5c37a27b0bb4840f23419d399fe9.zip |
Merge pull request #14586 from owncloud/proper-appcodechecker-docu
proper description of appcodechecker in config sample
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 1b3477417ff..5099fae66c2 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -420,8 +420,9 @@ $CONFIG = array( */ /** - * Check 3rd party apps to make sure they are using the private API and not the - * public API. If the app uses the private API it cannot be installed. + * Checks an app before install whether it uses private APIs instead of the + * proper public APIs. If this is set to true it will just allow to install or + * enable apps that pass this check. */ 'appcodechecker' => true, |