Fix uninitialized variable use in addressbook_list_item() (#3952)

This commit is contained in:
Aleksander Machniak 2015-02-24 04:20:45 -05:00
parent 868d90df7d
commit 41653f7cc0

View file

@ -288,7 +288,7 @@ class kolab_addressbook extends rcube_plugin
'type' => 'checkbox',
'name' => '_source[]',
'value' => $id,
'checked' => $prop['active'],
'checked' => false,
'aria-labelledby' => $label_id,
));
}