mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Removed double encoding of Public Key from JS.
See Cloudstack issue CLOUDSTACK-8742 for information.
This commit is contained in:
parent
bc51a42fc2
commit
f9e21da5dd
@ -1813,7 +1813,7 @@
|
|||||||
|
|
||||||
if (args.data.publickey != null && args.data.publickey.length > 0) {
|
if (args.data.publickey != null && args.data.publickey.length > 0) {
|
||||||
$.extend(data, {
|
$.extend(data, {
|
||||||
publickey: encodeURIComponent(args.data.publickey)
|
publickey: args.data.publickey
|
||||||
});
|
});
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: createURL('registerSSHKeyPair'),
|
url: createURL('registerSSHKeyPair'),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user