From 9b4eb5434665f59d2757a0085e14042b8ded6d30 Mon Sep 17 00:00:00 2001 From: Shin Kojima Date: Sun, 21 Sep 2014 21:26:43 +0900 Subject: [PATCH] [ja] apply patch] --- ja/ebook/13.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ja/ebook/13.5.md b/ja/ebook/13.5.md index ef210d24..cc643b89 100644 --- a/ja/ebook/13.5.md +++ b/ja/ebook/13.5.md @@ -124,7 +124,7 @@ DeleteController } func (this *DeleteController) Get() { - id, _ := strconv.Atoi(this.Ctx.Params[":id"]) + id, _ := strconv.Atoi(this.Ctx.Input.Params[":id"]) blog := GetBlog(id int) this.Data["Post"] = blog models.DelBlog(blog)