diff options
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | routers/repo/issue.go | 1 | ||||
-rw-r--r-- | templates/.VERSION | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.1.0709 Beta" +const APP_VER = "0.6.1.0710 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 294d3d28..6e88f19e 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -853,6 +853,7 @@ func Comment(ctx *middleware.Context) { RepoID: ctx.Repo.Repository.Id, RepoUserName: ctx.Repo.Owner.LowerName, RepoName: ctx.Repo.Repository.LowerName, + IsPrivate: ctx.Repo.Repository.IsPrivate, } if err = models.NotifyWatchers(act); err != nil { send(500, nil, err) diff --git a/templates/.VERSION b/templates/.VERSION index 0c504fb4..02495355 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.1.0709 Beta
\ No newline at end of file +0.6.1.0710 Beta
\ No newline at end of file |