From 58b1860354e685001548059d04ea0d4bc97a68b4 Mon Sep 17 00:00:00 2001 From: betateilchen Date: Tue, 3 Feb 2015 20:43:19 +0000 Subject: [PATCH] contrib/InfoPanel: added utf-8 header git-svn-id: https://svn.fhem.de/fhem/trunk@7861 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/InfoPanel/55_InfoPanel.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fhem/contrib/InfoPanel/55_InfoPanel.pm b/fhem/contrib/InfoPanel/55_InfoPanel.pm index fd80a4540..71e558c3e 100644 --- a/fhem/contrib/InfoPanel/55_InfoPanel.pm +++ b/fhem/contrib/InfoPanel/55_InfoPanel.pm @@ -1063,7 +1063,7 @@ sub btIP_HTMLHead($$) { # my $doctype= ''; # my $xmlns= 'xmlns="http://www.w3.org/1999/xhtml"'; - my $doctype= ' '."\n". + my $doctype= ' '."\n". ''."\n"; my $xmlns= ""; @@ -1072,6 +1072,7 @@ sub btIP_HTMLHead($$) { # css and js header output should be coded only in one place my $css= ""; my $scripts= btIP_getScript(); +# my $meta = "\n"; my $code= "$doctype\n\n\n$title\n$r$css$scripts\n"; return $code; }