-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the incorrect route path in the user edit page. #27007
Fix the incorrect route path in the user edit page. #27007
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, do not do this ctx.Data["Link"] = "/admin/users/" + ctx.Params(":userid")
, it is wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is still not right.
You only have BaseUrl
in EditUser
, but not in EditUserPost
....
ps: I really dislike playing such tricks
Honestly, I don't really understand what this PR is trying to do.... |
The |
I agree with @wxiaoguang |
Apologies for the syntax typo. |
Still not fixed. Actually, the relative URL could also help. If the browser's current URL is |
Thank you so much for your patient advice, I'll try this method. |
…andong/gitea into bugfix/Fix-the-incorrect-route-path
249f0a2
to
de718a9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep in mind, Gitea has a very unfriendly backend approach: if you put a variable in Xxx handler (UserEdit)
, then you might also need to put it in XxxPost handler (UserEditPost)
. Otherwise, if an user-side error occurs when the end user submits the form, the re-rendered page will go wrong.
Or, just like this PR does, get rid of such variables.
Thank you so much for your patience and guidance |
are we good with PR. |
* origin/main: Fix the incorrect route path in the user edit page. (go-gitea#27007) Refactor lfs requests (go-gitea#26783) Display archived labels specially when listing labels (go-gitea#26820) Remove a `gt-float-right` and some unnecessary helpers (go-gitea#27110) [skip ci] Updated licenses and gitignores Fix token endpoints ignore specified account (go-gitea#27080) Make SSPI auth mockable (go-gitea#27036)
* giteaofficial/main: Improve actions docs related to `pull_request` event (go-gitea#27126) Remove outdated paragraphs when comparing Gitea Actions to GitHub Actions (go-gitea#27119) Fix: treat tab "overview" as "repositories" in user profiles without readme (go-gitea#27124) Fix incorrect test code for error handling (go-gitea#27139) Increase auth provider icon size on login page (go-gitea#27122) fix pagination for followers and following (go-gitea#27127) services/wiki: Close() after error handling (go-gitea#27129) Use fetch helpers instead of fetch (go-gitea#27026) Change green buttons to primary color (go-gitea#27099) Fix wrong xorm get usage on migration (go-gitea#27111) Fix the incorrect route path in the user edit page. (go-gitea#27007) Refactor lfs requests (go-gitea#26783) Display archived labels specially when listing labels (go-gitea#26820) Remove a `gt-float-right` and some unnecessary helpers (go-gitea#27110) [skip ci] Updated licenses and gitignores Fix token endpoints ignore specified account (go-gitea#27080) Make SSPI auth mockable (go-gitea#27036)
Regression of #26713
After #26713 , the base path of user edit has been changed to
/admin/users/{userid}/edit
Before
demo.mp4