Fixed very bad mistake where no Result was ever set for WSF_REQUEST.item (..)
This commit is contained in:
@@ -247,13 +247,13 @@ feature -- Access: global variable
|
|||||||
local
|
local
|
||||||
v: detachable WSF_VALUE
|
v: detachable WSF_VALUE
|
||||||
do
|
do
|
||||||
v := meta_variable (a_name)
|
Result := meta_variable (a_name)
|
||||||
if v = Void then
|
if Result = Void then
|
||||||
v := query_parameter (a_name)
|
Result := query_parameter (a_name)
|
||||||
if v = Void then
|
if Result = Void then
|
||||||
v := form_parameter (a_name)
|
Result := form_parameter (a_name)
|
||||||
if v = Void then
|
if Result = Void then
|
||||||
v := cookie (a_name)
|
Result := cookie (a_name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user