Opened 13 years ago
Closed 13 years ago
#16562 closed Bug (duplicate)
intcomma now (incorrectly) requires USE_THOUSAND_SEPARATOR = True
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | contrib.humanize | Version: | dev |
Severity: | Release blocker | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Prior to r16168, the django.contrib.humanize
intcomma filter, when used in a project with settings:
USE_L10N = True USE_THOUSAND_SEPARATOR = False LANGUAGE_CODE = 'en-us'
would insert commas into numbers. After r16168, intcomma requires that USE_THOUSAND_SEPARATOR = True in order for it to insert the commas (or other separator for other languages, I'd guess). This is a regression and a bit non-sensical: if I'm specifically coding intcomma into my templates, it's a safe bet I do want the commas added, regardless of the USE_THOUSAND_SEPARATOR setting.
Change History (3)
comment:1 by , 13 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 13 years ago
comment:3 by , 13 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Looks like a dupe of #16404.
Marked #16558 as a duplicate as it describes a symptom.