Fix uninitialized variable use in addressbook_list_item() (#3952)
This commit is contained in:
parent
868d90df7d
commit
41653f7cc0
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ class kolab_addressbook extends rcube_plugin
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'name' => '_source[]',
|
'name' => '_source[]',
|
||||||
'value' => $id,
|
'value' => $id,
|
||||||
'checked' => $prop['active'],
|
'checked' => false,
|
||||||
'aria-labelledby' => $label_id,
|
'aria-labelledby' => $label_id,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue