Browse Source

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.
tags/v1.5.0-dev
Michael Kuhn 7 years ago committed by techknowlogick
parent
commit
fd274ffcd9
  1. 4
      routers/repo/wiki.go

4
routers/repo/wiki.go

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

Loading…
Cancel
Save