1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-25 20:55:47 +00:00

Fix wiki redirects (#3919)

When creating or editing a wiki page, the redirect to the wiki page does
not work because the file name is used instead of the page name.
This commit is contained in:
Michael Kuhn 2018-05-28 15:38:20 +02:00 committed by techknowlogick
parent 0be2b34cec
commit fd274ffcd9

View File

@ -350,7 +350,7 @@ func NewWikiPost(ctx *context.Context, form auth.NewWikiForm) {
return return
} }
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + models.WikiNameToFilename(wikiName)) ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + models.WikiNameToSubURL(wikiName))
} }
// EditWiki render wiki modify page // EditWiki render wiki modify page
@ -391,7 +391,7 @@ func EditWikiPost(ctx *context.Context, form auth.NewWikiForm) {
return return
} }
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + models.WikiNameToFilename(newWikiName)) ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + models.WikiNameToSubURL(newWikiName))
} }
// DeleteWikiPagePost delete wiki page // DeleteWikiPagePost delete wiki page