diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-11-24 14:17:41 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-11-24 14:17:41 +0100 |
commit | 2526c5e042e7fb54e6d82d54bdbc78003eaa5cf8 (patch) | |
tree | 26e5177f362d25c141b18a10643a6cdb8658659e /lib/private/Template | |
parent | 8ac9767881afb186f2713532eabb014ade0f1b2f (diff) | |
download | nextcloud-server-2526c5e042e7fb54e6d82d54bdbc78003eaa5cf8.tar.gz nextcloud-server-2526c5e042e7fb54e6d82d54bdbc78003eaa5cf8.zip |
Fix the config key on the sharing expire checkbox
We don't use `shareapi_internal_enforce_expire_date` anywhere.
`shareapi_enforce_internal_expire_date` is the one we want.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Template')
-rw-r--r-- | lib/private/Template/JSConfigHelper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Template/JSConfigHelper.php b/lib/private/Template/JSConfigHelper.php index e18081f3a8d..ebe799bf4f8 100644 --- a/lib/private/Template/JSConfigHelper.php +++ b/lib/private/Template/JSConfigHelper.php @@ -160,7 +160,7 @@ class JSConfigHelper { $defaultInternalExpireDate = $defaultInternalExpireDateEnforced = null; if ($defaultInternalExpireDateEnabled) { $defaultInternalExpireDate = (int)$this->config->getAppValue('core', 'shareapi_internal_expire_after_n_days', '7'); - $defaultInternalExpireDateEnforced = $this->config->getAppValue('core', 'shareapi_internal_enforce_expire_date', 'no') === 'yes'; + $defaultInternalExpireDateEnforced = $this->config->getAppValue('core', 'shareapi_enforce_internal_expire_date', 'no') === 'yes'; } $countOfDataLocation = 0; |