Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[BUGFIX] Extend WFS field type description (time)
Continue commit 2ad32f1
  • Loading branch information
rldhont committed Feb 24, 2016
1 parent c9b362f commit ebab36a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server/qgswfsprojectparser.cpp
Expand Up @@ -436,6 +436,8 @@ void QgsWFSProjectParser::describeFeatureType( const QString& aTypeName, QDomEle
geomElem.setAttribute( "type", "boolean" );
else if ( attributeType == QVariant::Date )
geomElem.setAttribute( "type", "date" );
else if ( attributeType == QVariant::Time )
geomElem.setAttribute( "type", "time" );
else if ( attributeType == QVariant::DateTime )
geomElem.setAttribute( "type", "dateTime" );
else
Expand Down

0 comments on commit ebab36a

Please sign in to comment.