Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[bugfix] Fixes WFS HTTP auth basic username/password
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;
}
else if ( pname == "user" )
else if ( pname == "user" || pname == "username" ) // Also accepts username as used in new WFS provider
{
mUsername = pval;
}
Expand Down

0 comments on commit 5daaf94

Please sign in to comment.