mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Fix #321. Allow empty comments as long as there are attachments.
This commit is contained in:
		@@ -755,7 +755,8 @@ func Comment(ctx *middleware.Context, params martini.Params) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	var ms []string
 | 
						var ms []string
 | 
				
			||||||
	content := ctx.Query("content")
 | 
						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"] {
 | 
							switch params["action"] {
 | 
				
			||||||
		case "new":
 | 
							case "new":
 | 
				
			||||||
			if comment, err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.Id, issue.Id, 0, 0, models.COMMENT, content, nil); err != nil {
 | 
								if comment, err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.Id, issue.Id, 0, 0, models.COMMENT, content, nil); err != nil {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -72,7 +72,11 @@
 | 
				
			|||||||
                                <span class="role label label-default pull-right">Owner</span>
 | 
					                                <span class="role label label-default pull-right">Owner</span>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                            <div class="panel-body markdown">
 | 
					                            <div class="panel-body markdown">
 | 
				
			||||||
 | 
					                                {{if len .Content}}
 | 
				
			||||||
                                {{str2html .Content}}
 | 
					                                {{str2html .Content}}
 | 
				
			||||||
 | 
					                                {{else}}
 | 
				
			||||||
 | 
					                                <i>No comment entered</i>
 | 
				
			||||||
 | 
					                                {{end}}
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                            {{with $attachments := .Attachments}}
 | 
					                            {{with $attachments := .Attachments}}
 | 
				
			||||||
                            {{if $attachments}}
 | 
					                            {{if $attachments}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user