Used res.put_header_lines (h) rather than res.put_header_text (h.string)

This commit is contained in:
2013-09-06 15:31:11 +02:00
parent 517720c99c
commit 5959099c55
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ feature -- Basic operations
do
create l_header.make
l_header.put_access_control_allow_all_origin
res.put_header_text (l_header.string)
res.put_header_lines (l_header)
execute_next (req, res)
end