Skip to content

Commit

Permalink
fix #2674
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13849 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jun 30, 2010
1 parent a06f5e4 commit 4b471ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -2649,10 +2649,9 @@ QStringList QgsWmsProvider::identifyAs( const QgsPoint& point, QString format )
// Compose request to WMS server

QString requestUrl = mGetFeatureInfoUrlBase;
QString layer = QUrl::toPercentEncoding( *it );

//! \todo Need to tie this into the options provided by GetCapabilities
requestUrl += QString( "&QUERY_LAYERS=%1" ).arg( layer );
requestUrl += QString( "&QUERY_LAYERS=%1" ).arg( *it );
requestUrl += QString( "&INFO_FORMAT=%1&X=%2&Y=%3" )
.arg( format ).arg( point.x() ).arg( point.y() );

Expand Down

0 comments on commit 4b471ee

Please sign in to comment.