Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[server] Fix invalid xml in getfeatureinfo
Fixes #20549 - error in parsing WMS GetFeatureInfo as XML
Also s/meta/META/ for consistency with all other tags
- Loading branch information
|
@@ -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 |
|
|
|
@@ -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%> |
|
|
|
@@ -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%> |
|
|
|
@@ -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%> |
|
|