CLOUDSTACK-4188: UI > volumes > download volume action - do not decode URL returned from API call.

This commit is contained in:
Jessica Wang 2013-08-11 21:03:25 -07:00
parent 474228b97e
commit 8fbb7d5dca
1 changed files with 1 additions and 1 deletions

View File

@ -981,7 +981,7 @@
return 'label.action.download.volume';
},
complete: function(args) {
var url = decodeURIComponent(args.url);
var url = args.url;
var htmlMsg = _l('message.download.volume');
var htmlMsg2 = htmlMsg.replace(/#/, url).replace(/00000/, url);
//$infoContainer.find("#info").html(htmlMsg2);