Skip to content

Commit

Permalink
[bugfix] Fixes WFS HTTP auth basic username/password
Browse files Browse the repository at this point in the history
Fixes #15360 and #15597
  • Loading branch information
elpaso committed Jan 17, 2017
1 parent 42026af commit 5daaf94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsdatasourceuri.cpp
Expand Up @@ -153,7 +153,7 @@ QgsDataSourceURI::QgsDataSourceURI( QString uri )
{ {
mAuthConfigId = pval; mAuthConfigId = pval;
} }
else if ( pname == "user" ) else if ( pname == "user" || pname == "username" ) // Also accepts username as used in new WFS provider
{ {
mUsername = pval; mUsername = pval;
} }
Expand Down

0 comments on commit 5daaf94

Please sign in to comment.