Skip to content

Commit

Permalink
[#2557] Featured grps/orgs should include datasets
Browse files Browse the repository at this point in the history
`include_datasets` now defaults to False (#2206), so need to include it
when getting the featured groups and orgs for the index page.
  • Loading branch information
brew committed Aug 4, 2015
1 parent a7804f9 commit 13b8bef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ckan/lib/helpers.py
Expand Up @@ -1921,7 +1921,8 @@ def get_group(id):
context = {'ignore_auth': True,
'limits': {'packages': 2},
'for_view': True}
data_dict = {'id': id}
data_dict = {'id': id,
'include_datasets': True}

try:
out = logic.get_action(get_action)(context, data_dict)
Expand Down

0 comments on commit 13b8bef

Please sign in to comment.