mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-20 23:07:01 +01:00
Add support for read-only address book records
This commit is contained in:
@@ -4229,7 +4229,7 @@ function rcube_webmail()
|
||||
};
|
||||
|
||||
// add row to contacts list
|
||||
this.add_contact_row = function(cid, cols, select)
|
||||
this.add_contact_row = function(cid, cols, classes)
|
||||
{
|
||||
if (!this.gui_objects.contactslist)
|
||||
return false;
|
||||
@@ -4238,7 +4238,7 @@ function rcube_webmail()
|
||||
row = document.createElement('tr');
|
||||
|
||||
row.id = 'rcmrow'+this.html_identifier(cid);
|
||||
row.className = 'contact';
|
||||
row.className = 'contact ' + (classes || '');
|
||||
|
||||
if (list.in_selection(cid))
|
||||
row.className += ' selected';
|
||||
|
||||
Reference in New Issue
Block a user