Skip to content

Commit

Permalink
Merge pull request #8520 from elpaso/bugfix-20549-invalid-xml-gfi
Browse files Browse the repository at this point in the history
[server] Fix invalid xml in getfeatureinfo
  • Loading branch information
elpaso committed Nov 21, 2018
2 parents bb44e2b + 0d696ef commit 5171e4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/server/services/wms/qgswmsrenderer.cpp
Expand Up @@ -2024,7 +2024,7 @@ namespace QgsWms
//the HTML head
featureInfoString.append( "<HEAD>\n" );
featureInfoString.append( "<TITLE> GetFeatureInfo results </TITLE>\n" );
featureInfoString.append( "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\">\n" );
featureInfoString.append( "<META http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"/>\n" );
featureInfoString.append( "</HEAD>\n" );

//start the html body
Expand Down
Expand Up @@ -3,7 +3,7 @@ Content-Type: text/html; charset=utf-8

<HEAD>
<TITLE> GetFeatureInfo results </TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<META http-equiv="Content-Type" content="text/html;charset=utf-8"/>
</HEAD>
<BODY>
<TABLE border=1 width=100%>
Expand Down
Expand Up @@ -3,7 +3,7 @@ Content-Type: text/html; charset=utf-8

<HEAD>
<TITLE> GetFeatureInfo results </TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<META http-equiv="Content-Type" content="text/html;charset=utf-8"/>
</HEAD>
<BODY>
<TABLE border=1 width=100%>
Expand Down
Expand Up @@ -3,7 +3,7 @@ Content-Type: text/html; charset=utf-8

<HEAD>
<TITLE> GetFeatureInfo results </TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<META http-equiv="Content-Type" content="text/html;charset=utf-8"/>
</HEAD>
<BODY>
<TABLE border=1 width=100%>
Expand Down

0 comments on commit 5171e4e

Please sign in to comment.