pydio / pydio-core

Pydio 8 official repository
https://pydio.com
GNU Affero General Public License v3.0
867 stars 289 forks source link

Multiple workspace folders when username has spaces at end #1322

Closed flipswitchingmonkey closed 7 years ago

flipswitchingmonkey commented 7 years ago

Pydio Free / 7.0.3

This is a pretty major issue imho. To recreate:

So, depending on how many spaces a user puts at the end, he can create dozens of workspaces, each working with a single login.

flipswitchingmonkey commented 7 years ago

It's easy to fix in plugins/authfront.session_login/SessionLoginFrontend.php: change line 130: $userId = (isSet($httpVars["userid"]) ? $httpVars["userid"] : null); to $userId = (isSet($httpVars["userid"]) ? trim($httpVars["userid"]) : null);

cdujeu commented 7 years ago

ok for me :-)