Browse Source

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

for-closed-social
Lunny Xiao 7 years ago
committed by GitHub
parent
commit
af9998b8a7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      routers/repo/wiki.go

+ 2
- 2
routers/repo/wiki.go View File

@ -209,7 +209,7 @@ func renderWikiPage(ctx *context.Context, isViewPage bool) (*git.Repository, *gi
continue continue
} }
pages = append(pages, PageMeta{ pages = append(pages, PageMeta{
Name: strings.Replace(name, "-", " ", -1),
Name: models.ToWikiPageName(name),
URL: models.ToWikiPageURL(name), URL: models.ToWikiPageURL(name),
}) })
} }
@ -361,7 +361,7 @@ func WikiPages(ctx *context.Context) {
continue continue
} }
pages = append(pages, PageMeta{ pages = append(pages, PageMeta{
Name: name,
Name: models.ToWikiPageName(name),
URL: models.ToWikiPageURL(name), URL: models.ToWikiPageURL(name),
Updated: c.Author.When, Updated: c.Author.When,
}) })

Loading…
Cancel
Save