Skip to content

Commit 3cb3a7a

Browse files
committedJul 15, 2013
also remove superfluous query items from WFS and WCS connections (as in WMS;
fixes #7848)
1 parent 85034e9 commit 3cb3a7a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/gui/qgsnewhttpconnection.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@ void QgsNewHttpConnection::accept()
149149
params.insert( QString( it->first ).toUpper(), *it );
150150
}
151151

152-
if ( params["SERVICE"].second.toUpper() == "WMS" )
152+
if ( params["SERVICE"].second.toUpper() == "WMS" ||
153+
params["SERVICE"].second.toUpper() == "WFS" ||
154+
params["SERVICE"].second.toUpper() == "WCS" )
153155
{
154156
url.removeEncodedQueryItem( params["SERVICE"].first );
155157
url.removeEncodedQueryItem( params["REQUEST"].first );

0 commit comments

Comments
 (0)
Please sign in to comment.