diff --git a/functions.php b/functions.php
index 12318a4..8db7ca2 100644
--- a/functions.php
+++ b/functions.php
@@ -5108,22 +5108,6 @@ function telegraph($to, $text)
}
}
-// telegrafick
-function tele_check($to, $text)
-{ //todo проверить где используется и убрать, как дублирующую telegraph().
- global $user;
- $ur = mysql_fetch_array(mysql_query("select `id` from `users` WHERE `login` = '{$to}' LIMIT 1;"));
- $us = mysql_fetch_array(mysql_query("select `id` from `online` WHERE `date` >= " . (time() - 60) . " AND `id` = '{$ur['id']}' LIMIT 1;"));
- if (!$ur) {
- echo "Персонаж не найден.";
- } elseif ($us[0]) {
- addchp(' (' . date("Y.m.d H:i") . ') Сообщение телеграфом от ' . nick::id($user['id'])->short() . ': ' . $text . ' ', '{[]}' . $to . '{[]}');
- } else {
- // если в офе
- mysql_query("INSERT INTO `telegraph` (`receiver`,`text`) VALUES ('" . $ur['id'] . "','" . '[' . date("d.m.Y H:i") . '] Сообщение по телеграфу от ' . nick::id($user['id'])->short() . ': ' . $text . ' ' . "');");
- }
-}
-
function get_meshok()
{
global $user;
diff --git a/magic/check.php b/magic/check.php
index 71ad6fc..aa55086 100644
--- a/magic/check.php
+++ b/magic/check.php
@@ -25,7 +25,7 @@
mysql_query("INSERT INTO `lichka`(`id`,`pers`,`text`,`date`) VALUES ('','".$tar['id']."','$mess','".time()."');");
mysql_query("INSERT INTO `paldelo`(`id`,`author`,`text`,`date`) VALUES ('','".$_SESSION['uid']."','$mess','".time()."');");
- tele_check($target,$messtel);
+ /*Тут была привязка к телеграфу*/
echo "Успешно поставлена проверка персонажу \"$target\"";
}