Aleksander Machniak
2015-03-05 c861ba15fe4a0403c43e29b393f597649df4b4ee
Fix missing vcard_attachment icon on messages list (#1490303)
2 files modified
4 ■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
plugins/vcard_attachments/vcardattach.js 3 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -22,6 +22,7 @@
- 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
-------------
plugins/vcard_attachments/vcardattach.js
@@ -28,7 +28,8 @@
  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="" />');
  }
}