From 292a4d6bf76691867b2be8ab0136b071fd516b1d Mon Sep 17 00:00:00 2001 From: Shin Kojima Date: Sun, 21 Sep 2014 22:01:42 +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 0282bff1..94e17512 100644 --- a/ja/ebook/13.5.md +++ b/ja/ebook/13.5.md @@ -100,7 +100,7 @@ EditController } func (this *EditController) Get() { - id, _ := strconv.Atoi(this.Ctx.Input.Params(":id")) + id, _ := strconv.Atoi(this.Ctx.Input.Params[":id"]) this.Data["Post"] = models.GetBlog(id) this.Layout = "layout.tpl" this.TplNames = "new.tpl"