diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-12-12 21:38:52 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-12-16 09:07:25 +0100 |
commit | bb4264c565963f07c087a4aebc47ff6ca0d59686 (patch) | |
tree | 1a60ad4d122a1af6b99d2e1ef6e0f9867a64c63d /config | |
parent | 87104ce5100f905dab3ce056f05847fad5dde393 (diff) | |
download | nextcloud-server-bb4264c565963f07c087a4aebc47ff6ca0d59686.tar.gz nextcloud-server-bb4264c565963f07c087a4aebc47ff6ca0d59686.zip |
config.php setting to always accept internal shares
Part of #18255
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index d998ce560bc..d297f86d738 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1339,6 +1339,13 @@ $CONFIG = array( 'sharing.minSearchStringLength' => 0, /** + * Starting with Nextcloud 18 also internal shares have to be accepted. Setting + * this setting to true forces all internal shares to be accepted directly. + * (resulting in pre 18 behavior). + */ +'sharing.interal_shares_accepted' => false, + +/** * All other configuration options */ |