Fixed very bad mistake where no Result was ever set for WSF_REQUEST.item (..)

This commit is contained in:
Jocelyn Fiat
2012-03-21 14:43:32 +01:00
parent b955912dc2
commit 95c3bbf6e5

View File

@@ -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