Skip to content

Commit

Permalink
Fix isQueryable
Browse files Browse the repository at this point in the history
  • Loading branch information
Belén Torrente committed Sep 23, 2024
1 parent 768cab2 commit f7bac5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adagucserverEC/CXMLGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ int CXMLGen::getWMS_1_3_0_Capabilities(CT::string *XMLDoc, std::vector<MetadataL
addErrorInXMLForMisconfiguredLayer(XMLDoc, layer);
}
if (layer->hasError == 0) {
XMLDoc->printconcat("<Layer queryable=\"%d\" opaque=\"1\" cascaded=\"%d\">\n", layer->isQuerable,
XMLDoc->printconcat("<Layer queryable=\"%d\" opaque=\"1\" cascaded=\"%d\">\n", layer->layerMetadata.isQueryable,
layer->dataSource->dLayerType == CConfigReaderLayerTypeCascaded && layer->dataSource->dLayerType == CConfigReaderLayerTypeLiveUpdate ? 1 : 0);
XMLDoc->concat("<Name>");
XMLDoc->concat(&layer->layerMetadata.name);
Expand Down

0 comments on commit f7bac5d

Please sign in to comment.