Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / eventz / delete_mail.inc
diff --git a/inc/eventz/delete_mail.inc b/inc/eventz/delete_mail.inc
new file mode 100644 (file)
index 0000000..4d0ecf4
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+/* This program is free software. It comes without any warranty, to
+ * the extent permitted by applicable law. You can redistribute it
+ * and/or modify it under the terms of the Do What The Fuck You Want
+ * To Public License, Version 2, as published by Sam Hocevar. See
+ * http://sam.zoy.org/wtfpl/COPYING for more details. */
+
+
+
+       function delete_mail($node_id) {
+               global $node,$db,$error;
+               $user_id=$_SESSION['user_id'];
+               foreach ($_POST['message'] as $chosen =>$value) {
+                       $db->query("delete from mail where mail_id='$chosen' and mail_user='$user_id'");
+               }
+       }
+
+?>
\ No newline at end of file
This page took 0.110569 seconds and 4 git commands to generate.