diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index f63a89301..49c03a9e1 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -168,7 +168,7 @@ no_reply_address_helper = Domain name for users with a hidden email address. For uname_holder = Username or Email Address password_holder = Password switch_dashboard_context = Switch Dashboard Context -my_repos = My Repositories +my_repos = Repositories show_more_repos = Show more repositories… collaborative_repos = Collaborative Repositories my_orgs = My Organizations diff --git a/routers/user/profile.go b/routers/user/profile.go index 4c5cbf508..6f8b8fe89 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -201,13 +201,14 @@ func Profile(ctx *context.Context) { ctx.Data["Total"] = total } else { repos, count, err = models.SearchRepositoryByName(&models.SearchRepoOptions{ - Keyword: keyword, - OwnerID: ctxUser.ID, - OrderBy: orderBy, - Private: showPrivate, - Page: page, - IsProfile: true, - PageSize: setting.UI.User.RepoPagingNum, + Keyword: keyword, + OwnerID: ctxUser.ID, + OrderBy: orderBy, + Private: showPrivate, + Page: page, + IsProfile: true, + PageSize: setting.UI.User.RepoPagingNum, + Collaborate: util.OptionalBoolFalse, }) if err != nil { ctx.ServerError("SearchRepositoryByName", err)