diff options
author | Unknwon <u@gogs.io> | 2015-08-19 03:36:16 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-19 03:36:16 +0800 |
commit | 4c7b6414eb91d12473ee0000bc3fccfd105feef9 (patch) | |
tree | fcba9eec9c31d4c77cb69b4afaa0eecac2d94e7c /routers/repo | |
parent | 2e8ffc2ffb31379998142e807f0066d5d9846c2c (diff) | |
download | gitea-4c7b6414eb91d12473ee0000bc3fccfd105feef9.tar.gz gitea-4c7b6414eb91d12473ee0000bc3fccfd105feef9.zip |
new access token UI
Diffstat (limited to 'routers/repo')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 4072483e89..2fa270f373 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -1013,7 +1013,7 @@ func ChangeMilestonStatus(ctx *middleware.Context) { func DeleteMilestone(ctx *middleware.Context) { if err := models.DeleteMilestoneByID(ctx.QueryInt64("id")); err != nil { - ctx.Flash.Error("DeleteMilestone: " + err.Error()) + ctx.Flash.Error("DeleteMilestoneByID: " + err.Error()) } else { ctx.Flash.Success(ctx.Tr("repo.milestones.deletion_success")) } |