Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
bug 1331643: TAGGIT_CASE_INSENSITIVE=True
Browse files Browse the repository at this point in the history
Tell django-taggit to use case insensitive lookups for existing tags.
We're using MySQL with a case insensitive collation, so this is already
done at the database level, but this may help the code work correctly
with the database.
  • Loading branch information
jwhitlock committed Jan 26, 2017
1 parent 359f55b commit a1bcbea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions kuma/settings/common.py
Expand Up @@ -1433,3 +1433,6 @@ def get_user_url(user):
# Tell django-recaptcha we want to use "No CAPTCHA".
# Note: The API keys are located in Django constance.
NOCAPTCHA = True # Note: Using No Captcha implies SSL.

# Tell django-taggit to use case-insensitive search for existing tags
TAGGIT_CASE_INSENSITIVE = True

0 comments on commit a1bcbea

Please sign in to comment.