mirror of https://github.com/go-gitea/gitea.git
* Fix wrong redirect on org labels (#18128) Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
This commit is contained in:
parent
7d75eede04
commit
7e084341fe
|
@ -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
|
## [1.15.9](https://github.com/go-gitea/gitea/releases/tag/v1.15.9) - 2021-12-30
|
||||||
|
|
||||||
* BUGFIXES
|
* BUGFIXES
|
||||||
|
* Fix wrong redirect on org labels (#18128) (#18134)
|
||||||
* Fix: unstable sort skips/duplicates issues across pages (#18094) (#18095)
|
* Fix: unstable sort skips/duplicates issues across pages (#18094) (#18095)
|
||||||
* Revert "Fix delete u2f keys bug (#18042)" (#18107)
|
* 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)
|
* 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) {
|
func InitializeLabels(ctx *context.Context) {
|
||||||
form := web.GetForm(ctx).(*forms.InitializeLabelsForm)
|
form := web.GetForm(ctx).(*forms.InitializeLabelsForm)
|
||||||
if ctx.HasError() {
|
if ctx.HasError() {
|
||||||
ctx.Redirect(ctx.Repo.RepoLink + "/labels")
|
ctx.Redirect(ctx.Org.OrgLink + "/labels")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue