Skip to content

Commit df411eb

Browse files
committed
WMS 1.3.0 compliance: use the reserved word 'None' if no fees
1 parent fe8dfe1 commit df411eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/qgsserverprojectparser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ void QgsServerProjectParser::serviceCapabilities( QDomElement& parentElement, QD
586586
//Fees
587587
QDomElement feesElem = propertiesElement.firstChildElement( QStringLiteral( "WMSFees" ) );
588588
QDomElement wmsFeesElem = doc.createElement( QStringLiteral( "Fees" ) );
589-
QDomText wmsFeesText = doc.createTextNode( QStringLiteral( "conditions unknown" ) ); // default value if access conditions are unknown
589+
QDomText wmsFeesText = doc.createTextNode( QStringLiteral( "None" ) ); // default value if access conditions are unknown
590590
if ( !feesElem.isNull() && !feesElem.text().isEmpty() )
591591
{
592592
wmsFeesText = doc.createTextNode( feesElem.text() );

0 commit comments

Comments
 (0)