Skip to content
Snippets Groups Projects
Commit 3378eed4 authored by Antony Lesuisse's avatar Antony Lesuisse
Browse files

[FIX] action manager dont change url for dialog

bzr revid: al@openerp.com-20120816235545-5af63loazx25fsbg
parent feb8dc09
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,9 @@ instance.web.ActionManager = instance.web.Widget.extend({
//state = _.extend(this.inner_action.params || {}, state);
}
}
this.getParent().do_push_state(state);
if(!this.dialog) {
this.getParent().do_push_state(state);
}
}
},
do_load_state: function(state, warm) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment