diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-02-21 17:07:07 -0600 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-02-21 17:07:07 -0600 |
commit | 3284efd1996854df0252d3e40574759e698b812d (patch) | |
tree | 74fae0ecd3340c1d3fa09bc53763ae427a0455ff /lib | |
parent | 869ea38ffe77e92b9a5651fe07020b4035d1f1d3 (diff) | |
download | nextcloud-server-3284efd1996854df0252d3e40574759e698b812d.tar.gz nextcloud-server-3284efd1996854df0252d3e40574759e698b812d.zip |
Improve the UX for sharing settings
* shows a info when list is potentially truncated
* shows a warning when characters length is not enough
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Template/JSConfigHelper.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/Template/JSConfigHelper.php b/lib/private/Template/JSConfigHelper.php index 1c241989fd2..7a4e8415e7d 100644 --- a/lib/private/Template/JSConfigHelper.php +++ b/lib/private/Template/JSConfigHelper.php @@ -206,7 +206,9 @@ class JSConfigHelper { 'versionstring' => \OC_Util::getVersionString(), 'enable_avatars' => true, // here for legacy reasons - to not crash existing code that relies on this value 'lost_password_link'=> $this->config->getSystemValue('lost_password_link', null), - 'modRewriteWorking' => (\OC::$server->getConfig()->getSystemValue('htaccess.IgnoreFrontController', false) === true || getenv('front_controller_active') === 'true'), + 'modRewriteWorking' => ($this->config->getSystemValue('htaccess.IgnoreFrontController', false) === true || getenv('front_controller_active') === 'true'), + 'sharing.maxAutocompleteResults' => $this->config->getSystemValue('sharing.maxAutocompleteResults', 0), + 'sharing.minSearchStringLength' => $this->config->getSystemValue('sharing.minSearchStringLength', 0), ]), "oc_appconfig" => json_encode([ 'core' => [ |