mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-02 05:33:09 +02:00
Using the django auth backend allows integers to be passed as a password Using Peter Sagerson's ldap auth backend there is an error thrown because some code tries to do a len() on the password. You could argue that the ldap auth backend should str(password), but you could also argue that passing an int as a password is bad practice This PR ensures that a string is sent to the auth module.