diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-26 12:25:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 12:25:50 +0100 |
commit | 26682b6936dcc127393655754500a1848d28c7d0 (patch) | |
tree | 3bb7b6ef891cd80895d4c2c92252a4ccbc0c0cee /lib/private/Template | |
parent | fe7e726ab228e6ddde7cf1442de9d0db193334a1 (diff) | |
parent | c1e4f9f30563d5eda1718d716d631d6092cd4e28 (diff) | |
download | nextcloud-server-26682b6936dcc127393655754500a1848d28c7d0.tar.gz nextcloud-server-26682b6936dcc127393655754500a1848d28c7d0.zip |
Merge pull request #8061 from nextcloud/use-typecasting
Use type casting instead of *val() method
Diffstat (limited to 'lib/private/Template')
-rw-r--r-- | lib/private/Template/JSConfigHelper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Template/JSConfigHelper.php b/lib/private/Template/JSConfigHelper.php index 9f93ef784bc..65068973e40 100644 --- a/lib/private/Template/JSConfigHelper.php +++ b/lib/private/Template/JSConfigHelper.php @@ -220,8 +220,8 @@ class JSConfigHelper { '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' => ($this->config->getSystemValue('htaccess.IgnoreFrontController', false) === true || getenv('front_controller_active') === 'true'), - 'sharing.maxAutocompleteResults' => intval($this->config->getSystemValue('sharing.maxAutocompleteResults', 0)), - 'sharing.minSearchStringLength' => intval($this->config->getSystemValue('sharing.minSearchStringLength', 0)), + 'sharing.maxAutocompleteResults' => (int)$this->config->getSystemValue('sharing.maxAutocompleteResults', 0), + 'sharing.minSearchStringLength' => (int)$this->config->getSystemValue('sharing.minSearchStringLength', 0), 'blacklist_files_regex' => \OCP\Files\FileInfo::BLACKLIST_FILES_REGEX, ]), "oc_appconfig" => json_encode([ |