fixed is_active by taking into account the query string as well
This commit is contained in:
@@ -55,8 +55,15 @@ feature -- Element change
|
|||||||
end
|
end
|
||||||
|
|
||||||
get_is_active (req: WSF_REQUEST)
|
get_is_active (req: WSF_REQUEST)
|
||||||
|
local
|
||||||
|
qs: STRING
|
||||||
do
|
do
|
||||||
is_active := req.path_info.same_string (location)
|
create qs.make_from_string (req.path_info)
|
||||||
|
if attached req.query_string as l_query_string and then not l_query_string.is_empty then
|
||||||
|
qs.append_character ('?')
|
||||||
|
qs.append (l_query_string)
|
||||||
|
end
|
||||||
|
is_active := qs.same_string (location)
|
||||||
end
|
end
|
||||||
|
|
||||||
set_permission_arguments (args: ITERABLE [STRING])
|
set_permission_arguments (args: ITERABLE [STRING])
|
||||||
|
|||||||
Reference in New Issue
Block a user