Skip to content

Commit

Permalink
Merge branch '2337-url-encoding-issue'
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed Mar 30, 2015
2 parents 066c450 + 8f85ef4 commit 845e0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/config/middleware.py
Expand Up @@ -218,7 +218,7 @@ def __call__(self, environ, start_response):

if qs:
# sort out weird encodings
#qs = urllib.quote(qs, '')
qs = urllib.quote(qs, '')
environ['CKAN_CURRENT_URL'] = '%s?%s' % (path_info, qs)
else:
environ['CKAN_CURRENT_URL'] = path_info
Expand Down

0 comments on commit 845e0ee

Please sign in to comment.