forked from NYANDEV/forgejo
* Fix wrong redirect on org labels (#18128) Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
This commit is contained in:
parent
7d75eede04
commit
7e084341fe
2 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
|
|||
## [1.15.9](https://github.com/go-gitea/gitea/releases/tag/v1.15.9) - 2021-12-30
|
||||
|
||||
* BUGFIXES
|
||||
* Fix wrong redirect on org labels (#18128) (#18134)
|
||||
* Fix: unstable sort skips/duplicates issues across pages (#18094) (#18095)
|
||||
* Revert "Fix delete u2f keys bug (#18042)" (#18107)
|
||||
* Migrating wiki don't require token, so we should move it out of the require form (#17645) (#18104)
|
||||
|
|
|
@ -94,7 +94,7 @@ func DeleteLabel(ctx *context.Context) {
|
|||
func InitializeLabels(ctx *context.Context) {
|
||||
form := web.GetForm(ctx).(*forms.InitializeLabelsForm)
|
||||
if ctx.HasError() {
|
||||
ctx.Redirect(ctx.Repo.RepoLink + "/labels")
|
||||
ctx.Redirect(ctx.Org.OrgLink + "/labels")
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue