From f61a1d210c4ed6f616b4bee25e8231b5bc67a640 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Thu, 24 Aug 2017 22:01:03 +0800 Subject: Fix missing collabrative repos (#2367) * fix missing collabrative repos * fix bug of collabrative * fix SQL quotes --- routers/user/profile.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'routers/user/profile.go') diff --git a/routers/user/profile.go b/routers/user/profile.go index f56ddc4eab..7380501f4b 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -205,13 +205,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: true, }) if err != nil { ctx.Handle(500, "SearchRepositoryByName", err) -- cgit v1.2.3