mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
added scurity checks before delete selected or distribution list entry with the action menu on the button of the page
This commit is contained in:
parent
4c12282716
commit
8ae115dbb5
@ -1938,6 +1938,12 @@ $readonlys['button[vcard]'] = true;
|
|||||||
} else if (selbox.value == "cat_add") {
|
} else if (selbox.value == "cat_add") {
|
||||||
win=window.open("'.egw::link('/etemplate/process_exec.php','menuaction=addressbook.addressbook_ui.cat_add').'","_blank","width=300,height=400,left=100,top=200");
|
win=window.open("'.egw::link('/etemplate/process_exec.php','menuaction=addressbook.addressbook_ui.cat_add').'","_blank","width=300,height=400,left=100,top=200");
|
||||||
win.focus();
|
win.focus();
|
||||||
|
} else if (selbox.value == "remove_from_list") {
|
||||||
|
if (confirm("'.lang('Remove selected contacts from distribution list').'")) selbox.form.submit();
|
||||||
|
} else if (selbox.value == "delete_list") {
|
||||||
|
if (confirm("'.lang('Delete selected distribution list!').'")) selbox.form.submit();
|
||||||
|
} else if (selbox.value == "delete") {
|
||||||
|
if (confirm("'.lang('Delete').'")) selbox.form.submit();
|
||||||
} else {
|
} else {
|
||||||
selbox.form.submit();
|
selbox.form.submit();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user