File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -1469,16 +1469,14 @@ QDomDocument QgsWFSServer::transaction( const QString& requestBody )
1469
1469
// Put the Feature Ids of the inserted feature
1470
1470
if ( insertResults.size () > 0 )
1471
1471
{
1472
- QDomElement irsElem = doc.createElement ( " InsertResults" );
1473
1472
foreach (const QString &fidStr, insertResults)
1474
1473
{
1475
1474
QDomElement irElem = doc.createElement ( " InsertResult" );
1476
1475
QDomElement fiElem = doc.createElement ( " ogc:FeatureId" );
1477
1476
fiElem.setAttribute ( " fid" , fidStr );
1478
1477
irElem.appendChild ( fiElem );
1479
- irsElem .appendChild ( irElem );
1478
+ respElem .appendChild ( irElem );
1480
1479
}
1481
- respElem.appendChild ( irsElem );
1482
1480
}
1483
1481
1484
1482
// Set the transaction reposne for success
You can’t perform that action at this time.
0 commit comments