1
0
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:
Hector Sanjuan 2012-04-03 17:14:07 +02:00
parent 526adc9a9e
commit e86a32ddc4
2 changed files with 9 additions and 2 deletions

View File

@ -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 = "."});
};

View File

@ -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');