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