From 7f36e539f12cceb99de73036c5cccd7ed4dfa5c6 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 16 Nov 2018 18:55:23 +0100 Subject: [PATCH] Accepts string general in html_encoded_string. --- library/server/wsf/src/response/wsf_html_page_response.e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/server/wsf/src/response/wsf_html_page_response.e b/library/server/wsf/src/response/wsf_html_page_response.e index 874d1e06..d469b7f2 100644 --- a/library/server/wsf/src/response/wsf_html_page_response.e +++ b/library/server/wsf/src/response/wsf_html_page_response.e @@ -149,9 +149,9 @@ feature {WSF_RESPONSE} -- Output feature -- HTML facilities - html_encoded_string (s: READABLE_STRING_32): READABLE_STRING_8 + html_encoded_string (s: READABLE_STRING_GENERAL): READABLE_STRING_8 do - Result := html_encoder.encoded_string (s) + Result := html_encoder.general_encoded_string (s) end feature {NONE} -- HTML Generation