diff options
Diffstat (limited to 'routers/home.go')
-rw-r--r-- | routers/home.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/home.go b/routers/home.go index 2dd223b748..071a870cf3 100644 --- a/routers/home.go +++ b/routers/home.go @@ -176,7 +176,7 @@ func ExploreUsers(ctx *context.Context) { Counter: models.CountUsers, Ranger: models.Users, PageSize: setting.UI.ExplorePagingNum, - OrderBy: "updated_unix DESC", + OrderBy: "name ASC", TplName: EXPLORE_USERS, }) } @@ -191,7 +191,7 @@ func ExploreOrganizations(ctx *context.Context) { Counter: models.CountOrganizations, Ranger: models.Organizations, PageSize: setting.UI.ExplorePagingNum, - OrderBy: "updated_unix DESC", + OrderBy: "name ASC", TplName: EXPLORE_ORGANIZATIONS, }) } |