diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-01 10:36:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-01 10:36:08 +0800 |
commit | 081485ecfddc88a05fdea0b0230672271658c086 (patch) | |
tree | bbaaa55ede02f311056f5df6c8b56301be09982d /models/pull.go | |
parent | 10644d6dd7574b031118bf01b2bd737017230ffd (diff) | |
download | gitea-081485ecfddc88a05fdea0b0230672271658c086.tar.gz gitea-081485ecfddc88a05fdea0b0230672271658c086.zip |
add milestone changed traker on issue view (#804)
Diffstat (limited to 'models/pull.go')
-rw-r--r-- | models/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go index 382738bf29..e680480978 100644 --- a/models/pull.go +++ b/models/pull.go @@ -470,7 +470,7 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str return err } - if err = newIssue(sess, NewIssueOptions{ + if err = newIssue(sess, pull.Poster, NewIssueOptions{ Repo: repo, Issue: pull, LableIDs: labelIDs, |