fix UI display problem when wiki name is non-ascii charset (#1142)

This commit is contained in:
Lunny Xiao 2017-03-08 08:34:22 +08:00 committed by GitHub
parent 7ed00b6e8d
commit af9998b8a7
1 changed files with 2 additions and 2 deletions

View File

@ -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,
})