summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-09-12 07:17:37 -0400
committerUnknwon <u@gogs.io>2015-09-12 07:17:37 -0400
commited5a61153fb8fc2ae960a505d9ed7f8b22c8b8d5 (patch)
treec7b63c71182091cbd5c3969cc0d45ed28824fe79
parent47df562ceddfaab3471e635e59039c03f47808e2 (diff)
downloadgitea-ed5a61153fb8fc2ae960a505d9ed7f8b22c8b8d5.tar.gz
gitea-ed5a61153fb8fc2ae960a505d9ed7f8b22c8b8d5.zip
fix #1629
-rw-r--r--gogs.go2
-rw-r--r--routers/home.go1
-rw-r--r--templates/.VERSION2
3 files changed, 3 insertions, 2 deletions
diff --git a/gogs.go b/gogs.go
index 650c01367d..838f8967dd 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-const APP_VER = "0.6.11.0911 Beta"
+const APP_VER = "0.6.11.0912 Beta"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/routers/home.go b/routers/home.go
index c83cab3772..16d0c7c416 100644
--- a/routers/home.go
+++ b/routers/home.go
@@ -50,6 +50,7 @@ func Home(ctx *middleware.Context) {
func Explore(ctx *middleware.Context) {
ctx.Data["Title"] = ctx.Tr("explore")
+ ctx.Data["PageIsExplore"] = true
ctx.Data["PageIsExploreRepositories"] = true
page := ctx.QueryInt("page")
diff --git a/templates/.VERSION b/templates/.VERSION
index 793a9cf1f3..4fab68fc04 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.6.11.0911 Beta \ No newline at end of file
+0.6.11.0912 Beta \ No newline at end of file