mirror of
https://github.com/discourse/discourse.git
synced 2025-09-09 15:44:13 +08:00
FIX: Redirect to /login-preferences didn't work for subfolders
This commit is contained in:
parent
895d5cb592
commit
86186de1e3
1 changed files with 2 additions and 2 deletions
|
@ -238,8 +238,8 @@ class UsersController < ApplicationController
|
||||||
raise Discourse::NotFound if params[:path] !~ /^[a-z_\-\/]+$/
|
raise Discourse::NotFound if params[:path] !~ /^[a-z_\-\/]+$/
|
||||||
|
|
||||||
if current_user.blank?
|
if current_user.blank?
|
||||||
cookies[:destination_url] = "/my/#{params[:path]}"
|
cookies[:destination_url] = path("/my/#{params[:path]}")
|
||||||
redirect_to "/login-preferences"
|
redirect_to path("/login-preferences")
|
||||||
else
|
else
|
||||||
redirect_to(path("/u/#{current_user.username}/#{params[:path]}"))
|
redirect_to(path("/u/#{current_user.username}/#{params[:path]}"))
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue