2 /* INDEV / DO NOT TOUCH | del_mail_all button functionality in mailbox | maniax */
4 function del_mail_all($node_id) {
7 if (empty($_POST['del_mail_all_chk']) || $_POST['del_mail_all_chk'] != 'on') {
8 $error = 'You must check the checkbox near del_mail_all button, to perform this operation';
12 $user_id = $_SESSION['user_id'];
13 $m_qs = sprintf('delete from mail where mail_user = %d', $user_id);
16 $error = 'All your mail has been deleted.';