summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-07-10 16:51:25 +0800
committerUnknwon <u@gogs.io>2015-07-10 16:51:25 +0800
commit35be8741c4523206aa3bff4aad1dda23847b381e (patch)
tree4490c401bc78a730afb57f7300d0477aa4fdc151
parenteb0f0710f070eb24cdf4243023eb010451525159 (diff)
downloadgitea-35be8741c4523206aa3bff4aad1dda23847b381e.tar.gz
gitea-35be8741c4523206aa3bff4aad1dda23847b381e.zip
fix #1112
-rw-r--r--gogs.go2
-rw-r--r--routers/repo/issue.go1
-rw-r--r--templates/.VERSION2
3 files changed, 3 insertions, 2 deletions
diff --git a/gogs.go b/gogs.go
index b33e264bc1..ecd93275de 100644
--- a/gogs.go
+++ b/gogs.go
@@ -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 294d3d2844..6e88f19eab 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 0c504fb448..0249535505 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