[FIX] Propagated API modification: message_get_subscribers result are now read records from res.users

bzr revid: tde@openerp.com-20120220172230-mj7vx5akh0xrmzs6
This commit is contained in:
Thibault Delavallée 2012-02-20 18:22:30 +01:00
parent 1469deff85
commit 3a53f777df
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ openerp.mail = function(session) {
var self = this;
_(records).each(function (record) {
// <div class="oe_mail_followers_vignette" title="Raoul Grobedon"><img src="people.png"/></div>
$('<div class="oe_mail_followers_vignette">').text(record.user_id[1]).appendTo(self.$element.find('div.oe_mail_followers'));
//$('<div class="oe_mail_followers_vignette">').text(record.user_id[1]).appendTo(self.$element.find('div.oe_mail_followers'));
$('<div class="oe_mail_followers_vignette">').text(record.name).appendTo(self.$element.find('div.oe_mail_followers'));
});
},