psql db schema test
[mirrors/Kyberia-bloodline.git] / inc / eventz / send.inc
diff --git a/inc/eventz/send.inc b/inc/eventz/send.inc
deleted file mode 100644 (file)
index 9e6959d..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-<?php
-//  [multimail buless send capatibility]
-        function send() {
-                global $db;
-if (empty($_SESSION['user_id']) || empty($_SESSION['user_name'])) {
-global $error;
-$error="Ak sa toto stane a citas tuto spravu chod navstivit buglist....ak robis picoviny a vidis tuto spravu tak ti uz ani buglist nepomoze a chod sa odjebat hackere:-)";
-return false;
-}
-
-                $user_id=mysql_real_escape_string($_SESSION['user_id']);
-                $user_name=mysql_real_escape_string($_SESSION['user_name']);
-                $mail_name=mysql_real_escape_string($_POST['mail_to']);
-
-               if (!$mail_name) {
-                                   global $error;
-                                   $error="Posta sa len tak nikomu neposiela.Co takto zadat aspon adresata??hm??";
-                                   return false;}
-                $mail_to=explode(";",$mail_name);
-                $mail_text=$_POST['mail_text'];
-                $nohtml=$_POST['nohtml'];
-
-        if (count($mail_to)==1) {
-                $q="select user_id from users where login='".$mail_name."'";
-                        $result=$db->query($q);
-                        $result->next();
-                        $to=$result->getRecord();
-                        if (!$to['user_id']) {
-                                       global $error;
-                                       $error="Dana osobka ktorej by si chcel poslat spravicku si bud zmenila nick alebo robis preklepy.";
-                                       return false;
-                        }
-                        // fuck off toth
-                        elseif ($user_id == 1859269 && $to['user_id'] == 2334) {
-                            global $error;
-                            $error = 'fuck you!';
-                            return false;
-                        }
-                        else {
-                            $mail_to_id[]=$to['user_id'];
-                        }
-        }
-
-        elseif (count($mail_to)>1) {
-                foreach ($mail_to as $mail_to_exploded) {
-                        $q="select user_id from users where login='$mail_to_exploded'";
-                                $result=$db->query($q);
-                                $result->next();
-                                $to=$result->getRecord();
-                                if (!$to['user_id']) {
-                                       global $error;
-                                       $error="Pravdepodobne si osobka $mail_to_exploded zmenila nick alebo mas niekde preklep. Skus to opravit a potom try again:-]";
-                                       return false; }
-                                // fuck off toth
-                                elseif ($user_id == 1859269 && $to['user_id'] == 2334) {
-                                    global $error;
-                                    $error = 'fuck you!';
-                                    return false;
-                                }
-                                else {$mail_to_id[]=$to['user_id'];}
-            }
-        }
-
-                if (empty($mail_text)) {
-                        global $error;
-                        $error="Prilis kratka sprava. Syr vesela krava, student prava a ci
-dobra trava?";
-return false;
-                }
-
-                if ($mail_to_id) {
-
-                        $mail_text=nodes::processContent($mail_text);
-global $htmlparse;
-if ($htmlparse) {
-$error=$htmlparse;
-return false;
-}
-foreach ($mail_to_id as $mail_to_id_send) {
-                $q="insert into mail set
-mail_user='$user_id',mail_read='no',
-mail_from='$user_id',mail_text='$mail_text',mail_to='$mail_to_id_send',mail_timestamp=NOW()";
-                        $result=$db->query($q);
-                $duplicate_id=$db->getLastInsertId();
-                       $q="insert into mail set mail_duplicate_id='$duplicate_id',
-mail_read='no',mail_user='$mail_to_id_send',mail_from='$user_id',mail_text='$mail_text',
-mail_to='$mail_to_id_send',mail_timestamp=NOW()";
-                        $result=$db->query($q);
-                        $db->query("update users set user_mail=user_mail+1,
-user_mail_name='$user_name', user_mail_id = '".mysql_real_escape_string($_SESSION['user_id'])."' where user_id='$mail_to_id_send'");
-                }
-            return true;
-
-                }
-
-                else {
-                        global $error;
-                        $error="user $mail_to does not exist";
-                        return false;
-                }
-        }
-
-
-?>
\ No newline at end of file
This page took 0.116573 seconds and 4 git commands to generate.