summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-08-09 10:18:35 +0800
committerUnknwon <u@gogs.io>2015-08-09 10:18:35 +0800
commitaede5cdb04fdbf74d9c602062fdece9f408e90f4 (patch)
treef0737f0175ee4bd72d3d4c5055623c946920d64b
parentd015d951bd6959f9585d8a83acfe7bba07b7eaad (diff)
downloadgitea-aede5cdb04fdbf74d9c602062fdece9f408e90f4.tar.gz
gitea-aede5cdb04fdbf74d9c602062fdece9f408e90f4.zip
fix app suburl in feeds
-rw-r--r--gogs.go2
-rw-r--r--templates/.VERSION2
-rw-r--r--templates/user/dashboard/feeds.tmpl2
3 files changed, 3 insertions, 3 deletions
diff --git a/gogs.go b/gogs.go
index ad52f2552c..df6b58366e 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-const APP_VER = "0.6.4.0808 Beta"
+const APP_VER = "0.6.4.0809 Beta"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/templates/.VERSION b/templates/.VERSION
index 1fd1eb7418..b039250bc5 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.6.4.0808 Beta \ No newline at end of file
+0.6.4.0809 Beta \ No newline at end of file
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl
index 47b55693f2..d2e66b308b 100644
--- a/templates/user/dashboard/feeds.tmpl
+++ b/templates/user/dashboard/feeds.tmpl
@@ -30,7 +30,7 @@
{{range $push.Commits}}
<li><img class="avatar-16" src="{{AvatarLink .AuthorEmail}}?s=16"> <a href="{{$repoLink}}/commit/{{.Sha1}}">{{ShortSha .Sha1}}</a> <span class="text-truncate grid-4-5">{{.Message}}</span></li>
{{end}}
- {{if $push.CompareUrl}}<li><a href="{{$.AppSubUrl}}/{{$push.CompareUrl}}">{{$.i18n.Tr "action.compare_2_commits"}} »</a></li>{{end}}
+ {{if $push.CompareUrl}}<li><a href="{{AppSubUrl}}/{{$push.CompareUrl}}">{{$.i18n.Tr "action.compare_2_commits"}} »</a></li>{{end}}
</ul>
</div>
{{else if eq .GetOpType 6}}