[FIX] Fixed mysterious bug about active_ids in state

This is a temporary fix, I need more time to check the issue.

bzr revid: fme@openerp.com-20130219181519-a1zdkr2y8a43dqgb
This commit is contained in:
Fabien Meghazi 2013-02-19 19:15:19 +01:00
parent bd02d21f2d
commit f559b97ce9
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ instance.web.ActionManager = instance.web.Widget.extend({
state["active_id"] = this.inner_action.context.active_id;
}
if (this.inner_action.context.active_ids) {
state["active_ids"] = this.inner_action.context.active_ids.join(',');
//state["active_ids"] = this.inner_action.context.active_ids.join(',');
}
}
}