Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes service type version in WFS GetCapabilities doc
  • Loading branch information
pblottiere committed Jul 27, 2018
1 parent 2d96491 commit 4233589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/services/wfs/qgswfsgetcapabilities.cpp
Expand Up @@ -187,8 +187,8 @@ namespace QgsWfs
//Service type version
QDomElement serviceTypeVersionElem = doc.createElement( QStringLiteral( "ows:ServiceTypeVersion" ) );
QDomText serviceTypeVersionText = doc.createTextNode( "1.1.0" );
serviceTypeElem.appendChild( serviceTypeText );
serviceElem.appendChild( serviceTypeElem );
serviceTypeVersionElem.appendChild( serviceTypeVersionText );
serviceElem.appendChild( serviceTypeVersionElem );

QDomElement feesElem = doc.createElement( QStringLiteral( "ows:Fees" ) );
QDomText feesText = doc.createTextNode( "None" );
Expand Down

0 comments on commit 4233589

Please sign in to comment.