[FIX] Introduced a bug in last commit

bzr revid: fme@openerp.com-20110929104000-vnahwe0w09p03cqx
This commit is contained in:
Fabien Meghazi 2011-09-29 12:40:00 +02:00
parent e34b07e1e3
commit 38ef100ec8
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ openerp.web.list_editable = function (openerp) {
/**
* Replace do_search to handle editability process
*/
do_search: function() {
this.set_editable(results.context['set_editable']);
do_search: function(domain, context, group_by) {
this.set_editable(context['set_editable']);
this._super.apply(this, arguments);
},
/**