Skip to content

Commit

Permalink
gogs#1594 Collaborative Repositories missing suburl on Dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
unknwon committed Sep 7, 2015
1 parent 232c222 commit 645d4d0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gogs.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.6.9.0906 Beta"
const APP_VER = "0.6.9.0907 Beta"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
Expand Down
2 changes: 1 addition & 1 deletion models/models_tidb.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build tidb
// +build tidb go1.4.2

// Copyright 2015 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
Expand Down
2 changes: 1 addition & 1 deletion modules/base/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func ToUtf8WithErr(content []byte) (error, string) {

encoding, _ := charset.Lookup(charsetLabel)
if encoding == nil {
return fmt.Errorf("unknow char decoder %s", charsetLabel), string(content)
return fmt.Errorf("unknown char decoder %s", charsetLabel), string(content)
}

result, n, err := transform.String(encoding.NewDecoder(), string(content))
Expand Down
2 changes: 1 addition & 1 deletion templates/.VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.9.0906 Beta
0.6.9.0907 Beta
2 changes: 1 addition & 1 deletion templates/user/dashboard/dashboard.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<ul class="list-no-style">
{{range .CollaborativeRepos}}
<li {{if .IsPrivate}}class="private"{{end}}>
<a href="{{.Owner.Name}}/{{.Name}}">
<a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">
<i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i>
<span class="repo-name">
<span class="repo-name-prefix">{{.Owner.Name}} / </span>
Expand Down

0 comments on commit 645d4d0

Please sign in to comment.