Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / eventz / delete_mail.inc
1 <?php
2 /* This program is free software. It comes without any warranty, to
3 * the extent permitted by applicable law. You can redistribute it
4 * and/or modify it under the terms of the Do What The Fuck You Want
5 * To Public License, Version 2, as published by Sam Hocevar. See
6 * http://sam.zoy.org/wtfpl/COPYING for more details. */
7
8
9
10 function delete_mail($node_id) {
11 global $node,$db,$error;
12 $user_id=$_SESSION['user_id'];
13 foreach ($_POST['message'] as $chosen =>$value) {
14 $db->query("delete from mail where mail_id='$chosen' and mail_user='$user_id'");
15 }
16 }
17
18 ?>
This page took 0.305395 seconds and 4 git commands to generate.