We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f06f52c commit f1120daCopy full SHA for f1120da
lib/internal/Magento/Framework/System/Ftp.php
@@ -107,6 +107,11 @@ public function validateConnectionString($string)
107
if ($data['scheme'] != 'ftp') {
108
throw new \Exception("Support for scheme unsupported: '{$data['scheme']}'");
109
}
110
+
111
+ // Decode user & password strings from URL
112
+ if ( array_key_exists('user', $data) ) $data['user'] = urldecode($data['user']);
113
+ if ( array_key_exists('pass', $data) ) $data['pass'] = urldecode($data['pass']);
114
115
return $data;
116
117
0 commit comments