Skip to content

Commit

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

[Server][WFS] Null field value in GML has to be empty string 3.4
  • Loading branch information
rldhont committed Nov 23, 2018
2 parents 5645791 + 594918e commit 9f62f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wfs/qgswfsgetfeature.cpp
Expand Up @@ -1455,7 +1455,7 @@ namespace QgsWfs
QString encodeValueToText( const QVariant &value, const QgsEditorWidgetSetup &setup )
{
if ( value.isNull() )
return QStringLiteral( "null" );
return QString();

if ( setup.type() == QStringLiteral( "DateTime" ) )
{
Expand Down

0 comments on commit 9f62f18

Please sign in to comment.