1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-04 17:47:19 +00:00

LableIDs -> LabelIDs (#1088)

This commit is contained in:
Ethan Koenig
2017-02-28 20:08:45 -05:00
committed by Lunny Xiao
parent e83c8afc56
commit 22f7aa6e9c
2 changed files with 7 additions and 7 deletions

View File

@ -600,7 +600,7 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str
if err = newIssue(sess, pull.Poster, NewIssueOptions{
Repo: repo,
Issue: pull,
LableIDs: labelIDs,
LabelIDs: labelIDs,
Attachments: uuids,
IsPull: true,
}); err != nil {