fix UI display problem when wiki name is non-ascii charset (#1142)
This commit is contained in:
parent
7ed00b6e8d
commit
af9998b8a7
1 changed files with 2 additions and 2 deletions
|
@ -209,7 +209,7 @@ func renderWikiPage(ctx *context.Context, isViewPage bool) (*git.Repository, *gi
|
|||
continue
|
||||
}
|
||||
pages = append(pages, PageMeta{
|
||||
Name: strings.Replace(name, "-", " ", -1),
|
||||
Name: models.ToWikiPageName(name),
|
||||
URL: models.ToWikiPageURL(name),
|
||||
})
|
||||
}
|
||||
|
@ -361,7 +361,7 @@ func WikiPages(ctx *context.Context) {
|
|||
continue
|
||||
}
|
||||
pages = append(pages, PageMeta{
|
||||
Name: name,
|
||||
Name: models.ToWikiPageName(name),
|
||||
URL: models.ToWikiPageURL(name),
|
||||
Updated: c.Author.When,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue