summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorJustin Nuß <justin.nuss@hmmh.de>2014-07-25 08:01:34 +0200
committerJustin Nuß <justin.nuss@hmmh.de>2014-07-25 08:01:34 +0200
commitdedb156d4a484d5104113959bb95bc214be40b2b (patch)
tree67115dfd223f10d02a4447648135ff88c56bc7bf /routers
parent30d7397f9745286282bce2dec960aa9e0e02af94 (diff)
downloadgitea-dedb156d4a484d5104113959bb95bc214be40b2b.tar.gz
gitea-dedb156d4a484d5104113959bb95bc214be40b2b.zip
Fix #321. Allow empty comments as long as there are attachments.
Diffstat (limited to 'routers')
-rw-r--r--routers/repo/issue.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index a5a2a28eca..0f03cea576 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -755,7 +755,8 @@ func Comment(ctx *middleware.Context, params martini.Params) {
var ms []string
content := ctx.Query("content")
- if len(content) > 0 {
+ // Fix #321. Allow empty comments, as long as we have attachments.
+ if len(content) > 0 || len(ctx.Req.MultipartForm.File["attachments"]) > 0 {
switch params["action"] {
case "new":
if comment, err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.Id, issue.Id, 0, 0, models.COMMENT, content, nil); err != nil {
@@ -1081,5 +1082,5 @@ func IssueGetAttachment(ctx *middleware.Context, params martini.Params) {
// Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
// We must put the name in " manually.
- ctx.ServeFile(attachment.Path, "\"" + attachment.Name + "\"")
+ ctx.ServeFile(attachment.Path, "\""+attachment.Name+"\"")
}