Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / eventz.inc
index 10b40a83d4c1211745a20669c6ca3d90cacac87b..cd2e6afa4773e0297fa8f0b5b6e6c6fd336f68fc 100644 (file)
@@ -1,51 +1,21 @@
 <?php
-switch ($_POST['event']) {
-        case 'pridaj priatela':
-                $status=eventz::addfriend();
-               if ($status) {
-                       Header("Location:".ACTION_SCRIPT."friends");
-               }
-                else echo $error;
-               break;
+/* 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. */
 
-}
-
-class eventz {
-
-function addfriend() {
-       global $kyberia;
-       global $user_id;
-       $friend_text=$_POST['friend_text'];
-       $friend_name=$_POST['friend_name'];
 
-       $q="select id from user where login='$friend_name'";
-       $result=$kyberia->query($q);
-       $result->next();
-       $friend=$result->getRecord();
-       $friend_id=$friend['id'];
+               include_once(SYSTEM_ROOT."/inc/eventz/$event.inc");
+               $status=$event();
 
-       if ($friend_id==$user_id) {
-               global $error;
-               $error="egotrip?";
-               return false;
-       }
-
-       elseif ($friend_id) {
-               $friend_text=strip_tags($friend_text,'<a><b><i><u><img><br><p><font>');
-               $friend_text=str_replace("\n","<br>",$friend_text);
-               $friend_text = EregI_Replace("((( )|(\n)|(^))+)(http://|ftp://|https://)([[:alnum:]][^,[:space:]]*)","\\2<a href=\"\\6\\7\">\\6\\7</a>",$friend_text);
-               $friend_text=addslashes($friend_text);
-               $q="insert into friends set user_id='$user_id',friend_text='$friend_text',friend_id='$friend_id'";
-               $result=mysql_query($q);
-               $kyberia->ubikMail($friend_id,"Uzivatel $user_name si ta pridal medzi priatelov s textom: $friend_text");
-       }
+if ($status>1) {
+       Header("Location: /id/".$status."/");
+}
 
-       else {
-               global $error;
-               $error="Uzivatel neexistuje!";
-               return false;
-       }
+elseif ($status) {
+       Header("Location: /id/".$node['node_id']."/");
 }
 
 
-}
+?>
This page took 0.095877 seconds and 4 git commands to generate.