File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,7 @@ feature {NONE} -- Initialization
125125 end
126126
127127 -- | HTTPS support
128- if attached meta_string_variable (" REQUEST_SCHEME" ) as l_scheme and then not l_scheme .is_empty then
129- is_https := l_scheme .is_case_insensitive_equal_general (" https" )
130- elseif attached execution_environment .item (" HTTPS" ) as l_https and then not l_https .is_empty then
128+ if attached meta_string_variable (" HTTPS" ) as l_https and then not l_https .is_empty then
131129 is_https := l_https .is_case_insensitive_equal_general (" on" )
132130 or else l_https .is_case_insensitive_equal_general (" yes" )
133131 or else l_https .is_case_insensitive_equal_general (" true" )
@@ -179,8 +177,8 @@ feature -- Destroy
179177feature -- Status report
180178
181179 is_https : BOOLEAN
182- -- Is https scheme or protocol ?
183- -- | based on REQUEST_SCHEME, or environment variable HTTPS=on
180+ -- Is https connection ?
181+ -- | based on meta variable HTTPS=on .
184182
185183 debug_output : STRING_ 8
186184 do
You can’t perform that action at this time.
0 commit comments