diff options
author | Unknwon <u@gogs.io> | 2015-09-12 07:17:37 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-12 07:17:37 -0400 |
commit | ed5a61153fb8fc2ae960a505d9ed7f8b22c8b8d5 (patch) | |
tree | c7b63c71182091cbd5c3969cc0d45ed28824fe79 | |
parent | 47df562ceddfaab3471e635e59039c03f47808e2 (diff) | |
download | gitea-ed5a61153fb8fc2ae960a505d9ed7f8b22c8b8d5.tar.gz gitea-ed5a61153fb8fc2ae960a505d9ed7f8b22c8b8d5.zip |
fix #1629
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | routers/home.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.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 |