mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 13:24:17 +00:00
#1905 Triming the issue title
This commit is contained in:
parent
6f929dcd9e
commit
e7aabf70dc
|
@ -393,7 +393,7 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) {
|
|||
issue := &models.Issue{
|
||||
RepoID: ctx.Repo.Repository.ID,
|
||||
Index: repo.NextIssueIndex(),
|
||||
Name: form.Title,
|
||||
Name: strings.TrimSpace(form.Title),
|
||||
PosterID: ctx.User.Id,
|
||||
Poster: ctx.User,
|
||||
MilestoneID: milestoneID,
|
||||
|
@ -620,7 +620,7 @@ func UpdateIssueTitle(ctx *middleware.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
issue.Name = ctx.Query("title")
|
||||
issue.Name = ctx.QueryTrim("title")
|
||||
if len(issue.Name) == 0 {
|
||||
ctx.Error(204)
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue