fix #966
This commit is contained in:
parent
78b717f202
commit
ac616c07de
2 changed files with 8 additions and 1 deletions
|
@ -71,6 +71,13 @@ func parseTreeData(tree *Tree, data []byte) ([]*TreeEntry, error) {
|
||||||
|
|
||||||
step = bytes.IndexByte(data[pos:], '\n')
|
step = bytes.IndexByte(data[pos:], '\n')
|
||||||
entry.name = string(data[pos : pos+step])
|
entry.name = string(data[pos : pos+step])
|
||||||
|
|
||||||
|
// In case entry name is surrounded by double quotes(it happens only in git-shell).
|
||||||
|
if entry.name[0] == '"' {
|
||||||
|
entry.name = string(data[pos+1 : pos+step-1])
|
||||||
|
entry.name = strings.Replace(entry.name, `\"`, `"`, -1)
|
||||||
|
}
|
||||||
|
|
||||||
pos += step + 1
|
pos += step + 1
|
||||||
entries = append(entries, entry)
|
entries = append(entries, entry)
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,7 +102,7 @@
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{if or $.IsRepositoryAdmin (eq .Poster.Id $.SignedUserID)}}
|
{{if or $.IsRepositoryAdmin (eq .Poster.Id $.SignedUserID)}}
|
||||||
<a class="edit-content item" href="#" data-type="comment"><i class="octicon octicon-pencil"></i></a>
|
<a class="edit-content item" href="#"><i class="octicon octicon-pencil"></i></a>
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue