aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/config
diff options
context:
space:
mode:
authorVirtualTam <virtualtam+github@flibidi.net>2017-08-27 16:36:53 +0200
committerGitHub <noreply@github.com>2017-08-27 16:36:53 +0200
commite4ed3a46b7029eeed757daf33596eb5d345c32b5 (patch)
treeefce8e24dbe264c2dac554e6838f7bbf35e80e4b /application/config
parentfc27141cf6eb04d3d8714385cb6961a8063fe61b (diff)
parent2e07e77573a379f9af006b2c523117eef9fdf9b2 (diff)
downloadShaarli-e4ed3a46b7029eeed757daf33596eb5d345c32b5.tar.gz
Shaarli-e4ed3a46b7029eeed757daf33596eb5d345c32b5.tar.zst
Shaarli-e4ed3a46b7029eeed757daf33596eb5d345c32b5.zip
Merge pull request #944 from thewilli/configure-rememberme
new setting: default value for 'remember me' checkbox
Diffstat (limited to 'application/config')
-rw-r--r--application/config/ConfigManager.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/application/config/ConfigManager.php b/application/config/ConfigManager.php
index 0fc5a5c7..fdd5b3d7 100644
--- a/application/config/ConfigManager.php
+++ b/application/config/ConfigManager.php
@@ -328,6 +328,8 @@ class ConfigManager
328 $this->setEmpty('privacy.default_private_links', false); 328 $this->setEmpty('privacy.default_private_links', false);
329 $this->setEmpty('privacy.hide_public_links', false); 329 $this->setEmpty('privacy.hide_public_links', false);
330 $this->setEmpty('privacy.hide_timestamps', false); 330 $this->setEmpty('privacy.hide_timestamps', false);
331 // default state of the 'remember me' checkbox of the login form
332 $this->setEmpty('privacy.remember_user_default', true);
331 333
332 $this->setEmpty('thumbnail.enable_thumbnails', true); 334 $this->setEmpty('thumbnail.enable_thumbnails', true);
333 $this->setEmpty('thumbnail.enable_localcache', true); 335 $this->setEmpty('thumbnail.enable_localcache', true);