diff options
author | Eric <eric@piwigo.org> | 2009-12-05 19:55:21 +0000 |
---|---|---|
committer | Eric <eric@piwigo.org> | 2009-12-05 19:55:21 +0000 |
commit | 1b601a37de32f1b808970bc25ca9d6b5ccd34e35 (patch) | |
tree | 0692ae1fdf28ee5f8029c0ace341df320bf69efd /include/config_default.inc.php | |
parent | 9c5cfbc789e691ff85eb6ab6928980577cadf203 (diff) |
Feature 0000796 fixed : Strengthen login handling
git-svn-id: http://piwigo.org/svn/trunk@4429 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 3ac0f5dae..45ef18468 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -325,6 +325,12 @@ $conf['default_redirect_method'] = 'http'; // Define using double password type in admin's users management panel $conf['double_password_type_in_admin'] = false; +// Define if logins must be case sentitive or not at users registration. ie : +// If set true, the login "user" will equal "User" or "USER" or "user", +// etc. ... And it will be impossible to use such login variation to create a +// new user account. +$conf['no_case_sensitive_for_login'] = false; + // +-----------------------------------------------------------------------+ // | metadata | // +-----------------------------------------------------------------------+ |