Changes between Version 2 and Version 3 of Ticket #15367, comment 10
- Timestamp:
- Sep 12, 2011, 1:20:31 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15367, comment 10
v2 v3 1 1 After talking to Carl on IRC, I'm sorry to say that I misunderstood the reason why you used a list for the setting (to enforce an order of precedence). 2 2 3 So the `global_settings.py` would indeed have this: :3 So the `global_settings.py` would indeed have this: 4 4 5 5 {{{ 6 PASSWORD_HASHERS = (6 AUTH_PASSWORD_HASHERS = ( 7 7 'django.utils.passhash.PBKDF2PasswordHasher', 8 8 'django.utils.passhash.BCryptPasswordHasher', … … 16 16 17 17 {{{ 18 PASSWORD_HASHERS = (18 AUTH_PASSWORD_HASHERS = ( 19 19 'mysite.security.MyCustomBCryptPasswordHasher', 20 20 'django.utils.passhash.PBKDF2PasswordHasher',