From 71c851ca39fc649e24990cda08960ccc879ea35a Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Wed, 5 Oct 2011 14:47:30 +0200 Subject: [PATCH] Fixed missing http:// in absolute URL --- library/server/ewsgi/src/wgi_request_from_table.e | 1 + 1 file changed, 1 insertion(+) diff --git a/library/server/ewsgi/src/wgi_request_from_table.e b/library/server/ewsgi/src/wgi_request_from_table.e index 17e13492..8f967bf4 100644 --- a/library/server/ewsgi/src/wgi_request_from_table.e +++ b/library/server/ewsgi/src/wgi_request_from_table.e @@ -722,6 +722,7 @@ feature -- URL Utility Result := script_url (a_path) if attached http_host as h then Result.prepend (h) + Result.prepend ("http://") else --| Issue ?? end