[FIX] problem with page reload after installing a module

lp bug: https://launchpad.net/bugs/1214814 fixed

bzr revid: nicolas.vanhoren@openerp.com-20130913104026-rxtl7h1u7vuixyvm
This commit is contained in:
niv-openerp 2013-09-13 12:40:26 +02:00
parent 53b7baf1ce
commit 56382a450a
1 changed files with 1 additions and 1 deletions

View File

@ -808,7 +808,7 @@ instance.web.redirect = function(url, wait) {
if (old === url) {
window.location.reload();
} else {
window.location = url;
window.location.href = url;
}
};