[FIX] web: when filtering out context, also strip *_view_ref keys

bzr revid: chs@openerp.com-20140320131014-3v5qfjxq9unqu5fs
This commit is contained in:
Christophe Simonis 2014-03-20 14:10:14 +01:00
parent acb010a985
commit 03c31de4dd
1 changed files with 1 additions and 1 deletions

View File

@ -1365,7 +1365,7 @@ instance.web.View = instance.web.Widget.extend({
// Wrong group_by values will simply fail and forbid rendering of the destination view
var ncontext = new instance.web.CompoundContext(
_.object(_.reject(_.pairs(dataset.get_context().eval()), function(pair) {
return pair[0].match('^(?:(?:default_|search_default_).+|group_by|group_by_no_leaf|active_id|active_ids)$') !== null;
return pair[0].match('^(?:(?:default_|search_default_).+|.+_view_ref|group_by|group_by_no_leaf|active_id|active_ids)$') !== null;
}))
);
ncontext.add(action_data.context || {});