Contacts: Fix delete when checking attribute boxes.

This commit is contained in:
Nate
2020-03-31 08:23:17 -06:00
parent d3943cb097
commit dea08e50d9
7 changed files with 7 additions and 7 deletions

View File

@@ -89,7 +89,7 @@
echo "<tr class='list-row' href='".$list_row_url."'>\n";
if (permission_exists('contact_setting_delete')) {
echo " <td class='checkbox'>\n";
echo " <input type='checkbox' name='contact_settings[$x][checked]' id='checkbox_".$x."' class='checkbox_settings' value='true' onclick=\"edit_delete_action('settings');\">\n";
echo " <input type='checkbox' name='contact_settings[$x][checked]' id='checkbox_".$x."' class='chk_delete checkbox_settings' value='true' onclick=\"edit_delete_action('settings');\">\n";
echo " <input type='hidden' name='contact_settings[$x][uuid]' value='".escape($row['contact_setting_uuid'])."' />\n";
echo " </td>\n";
}