mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-30 22:50:10 +03:00
Bug #1195: Tentative fix.
Seems to fix some weirdness regarding language changes in Sunstone which might be related to session being rebuilt on page reload.
This commit is contained in:
parent
526adc9a9e
commit
e86a32ddc4
@ -58,10 +58,14 @@ function setLang(lang_str){
|
||||
id: uid,
|
||||
extra_param: template_str
|
||||
},
|
||||
error: onError
|
||||
error: onError,
|
||||
success: function() {
|
||||
$.post('config',JSON.stringify({lang:lang_tmp}),function(){
|
||||
window.location.href = ".";
|
||||
});
|
||||
},
|
||||
};
|
||||
OpenNebula.User.update(obj);
|
||||
$.post('config',JSON.stringify({lang:lang_tmp}),function(){window.location.href = "."});
|
||||
|
||||
};
|
||||
|
||||
|
@ -747,6 +747,9 @@ function setupTemplateUpdateDialog(){
|
||||
return false;
|
||||
};
|
||||
|
||||
//Workaround so deletion of templates is allowed.
|
||||
if (!new_template) new_template=" ";
|
||||
|
||||
var resource = $(this).val();
|
||||
Sunstone.runAction(resource+".update",id,new_template);
|
||||
dialog.dialog('close');
|
||||
|
Loading…
x
Reference in New Issue
Block a user