Fix missing vcard_attachment icon on messages list (#1490303)

pull/280/head
Aleksander Machniak 9 years ago
parent e14e631947
commit c861ba15fe

@ -22,6 +22,7 @@ CHANGELOG Roundcube Webmail
- Fix so localized folder name is displayed in multi-folder search result (#1490243)
- Fix javascript error after creating a folder which is a subfolder of another one (#1490297)
- Fix bug where subject of sent/saved message was removed if mbstring wasn't installed (#1490295)
- Fix missing vcard_attachment icon on messages list (#1490303)
RELEASE 1.1.0
-------------

@ -28,7 +28,8 @@ function plugin_vcard_insertrow(data)
var ctype = data.row.ctype;
if (ctype == 'text/vcard' || ctype == 'text/x-vcard' || ctype == 'text/directory') {
$('#rcmrow'+data.uid+' > td.attachment').html('<img src="'+rcmail.env.vcard_icon+'" alt="" />');
$('#rcmrow' + rcmail.html_identifier(data.uid, true) + ' > td.attachment')
.html('<img src="' + rcmail.env.vcard_icon + '" alt="" />');
}
}

Loading…
Cancel
Save