Skip to content

Commit

Permalink
Merge pull request #8536 from rldhont/server-wfs-format-gml-null-fiel…
Browse files Browse the repository at this point in the history
…d-218

[Server] Null field value in GML has to be empty string 2.18
  • Loading branch information
rldhont committed Nov 23, 2018
2 parents 83df334 + a3a1204 commit 1bb499e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgswfsserver.cpp
Expand Up @@ -2242,7 +2242,7 @@ QDomElement QgsWFSServer::createFeatureGML3( QgsFeature* feat, QDomDocument& doc
QString QgsWFSServer::encodeValueToText( const QVariant& value )
{
if ( value.isNull() )
return "null";
return QString();

switch ( value.type() )
{
Expand Down

0 comments on commit 1bb499e

Please sign in to comment.