Skip to content

Commit

Permalink
[#728] Add ckan.tracking_enabled to app_globals
Browse files Browse the repository at this point in the history
The ckan.tracking_enabled ini file setting was being ignored, so page
view tracking wasn't working. Adding ckan.tracking_enabled to
app_globals makes the setting work again.

Fixes #728
  • Loading branch information
Sean Hammond committed Apr 2, 2013
1 parent 141d08c commit d242bb9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ckan/lib/app_globals.py
Expand Up @@ -57,6 +57,7 @@
'openid_enabled': {'default': 'true', 'type' : 'bool'},
'debug': {'default': 'false', 'type' : 'bool'},
'ckan.debug_supress_header' : {'default': 'false', 'type' : 'bool'},
'ckan.tracking_enabled' : {'default': 'false', 'type' : 'bool'},

# int
'ckan.datasets_per_page': {'default': '20', 'type': 'int'},
Expand Down

0 comments on commit d242bb9

Please sign in to comment.