Skip to content

Commit 1bb499e

Browse files
authored
Merge pull request #8536 from rldhont/server-wfs-format-gml-null-field-218
[Server] Null field value in GML has to be empty string 2.18
2 parents 83df334 + a3a1204 commit 1bb499e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/qgswfsserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2242,7 +2242,7 @@ QDomElement QgsWFSServer::createFeatureGML3( QgsFeature* feat, QDomDocument& doc
22422242
QString QgsWFSServer::encodeValueToText( const QVariant& value )
22432243
{
22442244
if ( value.isNull() )
2245-
return "null";
2245+
return QString();
22462246

22472247
switch ( value.type() )
22482248
{

0 commit comments

Comments
 (0)