Commit 45c7d959 authored by Dietmar Maurer's avatar Dietmar Maurer

correctly set content type for GUI index page

parent 5ba0ed5c
...@@ -246,7 +246,8 @@ _EOJS ...@@ -246,7 +246,8 @@ _EOJS
</html> </html>
_EOD _EOD
my $resp = HTTP::Response->new(200, "OK", undef, $page); my $headers = HTTP::Headers->new(Content_Type => "text/html; charset=utf-8");
my $resp = HTTP::Response->new(200, "OK", $headers, $page);
return $resp; return $resp;
} }
......
pve-manager (3.1-23) unstable; urgency=low pve-manager (3.1-23) unstable; urgency=low
* subscription updates: set UserAgent header on proxy connect request * subscription updates: set UserAgent header on proxy connect request
* correctly set content type for GUI index page
-- Proxmox Support Team <support@proxmox.com> Tue, 29 Oct 2013 10:20:02 +0100 -- Proxmox Support Team <support@proxmox.com> Tue, 29 Oct 2013 10:20:02 +0100
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment