mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-17 18:28:24 +08:00
fix: trim the whitespaces for the search keyword (#893)
This commit is contained in:
@ -5,12 +5,12 @@
|
||||
package routers
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/Unknwon/paginater"
|
||||
|
||||
"bytes"
|
||||
|
||||
"code.gitea.io/gitea/models"
|
||||
"code.gitea.io/gitea/modules/base"
|
||||
"code.gitea.io/gitea/modules/context"
|
||||
@ -100,7 +100,7 @@ func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) {
|
||||
orderBy = "created_unix DESC"
|
||||
}
|
||||
|
||||
keyword := ctx.Query("q")
|
||||
keyword := strings.Trim(ctx.Query("q"), " ")
|
||||
if len(keyword) == 0 {
|
||||
repos, err = opts.Ranger(&models.SearchRepoOptions{
|
||||
Page: page,
|
||||
@ -199,7 +199,7 @@ func RenderUserSearch(ctx *context.Context, opts *UserSearchOptions) {
|
||||
orderBy = "id DESC"
|
||||
}
|
||||
|
||||
keyword := ctx.Query("q")
|
||||
keyword := strings.Trim(ctx.Query("q"), " ")
|
||||
if len(keyword) == 0 {
|
||||
users, err = opts.Ranger(&models.SearchUserOptions{OrderBy: orderBy,
|
||||
Page: page,
|
||||
|
Reference in New Issue
Block a user