File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ func MoveIssueAcrossBoards(ctx *context.Context) {
602602 }
603603 }
604604
605- issue , err := models .GetIssueByID (ctx .ParamsInt64 (":issueID " ))
605+ issue , err := models .GetIssueByID (ctx .ParamsInt64 (":issueIndex " ))
606606 if err != nil {
607607 if models .IsErrIssueNotExist (err ) {
608608 ctx .NotFound ("" , nil )
Original file line number Diff line number Diff line change @@ -872,7 +872,7 @@ func RegisterRoutes(m *web.Route) {
872872 m .Delete ("" , repo .DeleteProjectBoard )
873873 m .Post ("/default" , repo .SetDefaultProjectBoard )
874874
875- m .Post ("/{issueID }/{sorting}" , repo .MoveIssueAcrossBoards )
875+ m .Post ("/{issueIndex }/{sorting}" , repo .MoveIssueAcrossBoards )
876876 })
877877 })
878878 }, reqRepoProjectsWriter , context .RepoMustNotBeArchived ())
You can’t perform that action at this time.
0 commit comments