Skip to content

Commit

Permalink
[#2825] Bugfix for Language changing querystring issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Aug 9, 2012
1 parent f7c68be commit f04c85a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ckan/config/middleware.py
Expand Up @@ -208,6 +208,7 @@ def __call__(self, environ, start_response):
qs = urllib.quote(qs, '')
environ['CKAN_CURRENT_URL'] = '%s?%s' % (path_info, qs)
else:
environ['CKAN_CURRENT_URL_RAW'] = path_info
environ['CKAN_CURRENT_URL'] = path_info

return self.app(environ, start_response)
Expand Down

0 comments on commit f04c85a

Please sign in to comment.