diff --git a/AUTHORS b/AUTHORS
index 077c91a..d3a437a 100644
a
|
b
|
answer newbie questions, and generally made Django that much better:
|
435 | 435 | Mykola Zamkovoi <nickzam@gmail.com> |
436 | 436 | Jarek Zgoda <jarek.zgoda@gmail.com> |
437 | 437 | Cheng Zhang |
| 438 | Daniel Nordberg <dnordberg@gmail.com> |
438 | 439 | |
439 | 440 | A big THANK YOU goes to: |
440 | 441 | |
diff --git a/django/views/i18n.py b/django/views/i18n.py
index e141c1d..13a5e6c 100644
a
|
b
|
def javascript_catalog(request, domain='djangojs', packages=None):
|
121 | 121 | packages = ['django.conf'] |
122 | 122 | if type(packages) in (str, unicode): |
123 | 123 | packages = packages.split('+') |
124 | | packages = [p for p in packages if p == 'django.conf' or p in settings.INSTALLED_APPS] |
125 | 124 | default_locale = to_locale(settings.LANGUAGE_CODE) |
126 | 125 | locale = to_locale(get_language()) |
127 | 126 | t = {} |