Skip to content

Commit

Permalink
fix broken tag listing
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Nov 30, 2012
1 parent 5212d5b commit 559b7e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PluginController {
def filter = params.filter?.toString() ?: "featured" def filter = params.filter?.toString() ?: "featured"
if (params.tag) { if (params.tag) {
filter = "all" filter = "all"
(plugins, pluginCount) = pluginService.listPluginsByTagWithTotal(params.tag, max: maxResults, offset: offset, sort:'name') (plugins, pluginCount) = pluginService.listPluginsByTagWithTotal(params.tag, max: maxResults, offset: offset)
} }
else { else {
(plugins, pluginCount) = pluginService."list${filter.capitalize()}PluginsWithTotal"(max: maxResults, offset: offset) (plugins, pluginCount) = pluginService."list${filter.capitalize()}PluginsWithTotal"(max: maxResults, offset: offset)
Expand Down

0 comments on commit 559b7e2

Please sign in to comment.