mirror of https://github.com/apache/cloudstack.git
Merge pull request #709 from borisroman/CLOUDSTACK-8742
Removed double encoding of Public Key from JS.See Cloudstack issue CLOUDSTACK-8742 & CLOUDSTACK-8649 for information. * pr/709: Removed double encoding of Public Key from JS. Signed-off-by: Wido den Hollander <wido@widodh.nl>
This commit is contained in:
commit
8a1d632273
|
|
@ -1813,7 +1813,7 @@
|
|||
|
||||
if (args.data.publickey != null && args.data.publickey.length > 0) {
|
||||
$.extend(data, {
|
||||
publickey: encodeURIComponent(args.data.publickey)
|
||||
publickey: args.data.publickey
|
||||
});
|
||||
$.ajax({
|
||||
url: createURL('registerSSHKeyPair'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue