diff options
author | Unknwon <u@gogs.io> | 2015-11-27 00:24:24 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-27 00:24:24 -0500 |
commit | 392f3ee21016476fb9794f78882d6c447acb8449 (patch) | |
tree | d2ff57d2ddbe77760021ea57dafc70004ec95269 /modules/auth | |
parent | c50a3503e6e8ece0dabd109932a72fe093c3cab3 (diff) | |
download | gitea-392f3ee21016476fb9794f78882d6c447acb8449.tar.gz gitea-392f3ee21016476fb9794f78882d6c447acb8449.zip |
wiki: finish new
Diffstat (limited to 'modules/auth')
-rw-r--r-- | modules/auth/repo_form.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index b876f27910..1ba81076fc 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -247,7 +247,7 @@ func (f *EditReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) bi type NewWikiForm struct { Title string `binding:"Required"` - Content string + Content string `binding:"Required"` Message string } |