mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 20:33:38 +08:00
Fix: Added underscore to my_redirect regex
This commit is contained in:
parent
67a5fc39de
commit
c3507a3242
|
@ -165,7 +165,7 @@ class UsersController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def my_redirect
|
def my_redirect
|
||||||
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] = "/my/#{params[:path]}"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user