From 8b2defab337d85114a5b262f4571b8deca740efc Mon Sep 17 00:00:00 2001 From: lopar Date: Sun, 24 Jun 2018 02:39:27 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=B4=D1=83=D0=B1=D0=BB=D0=B8=D1=80=D1=83=D1=8E=D1=89?= =?UTF-8?q?=D0=B5=D0=B9=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- functions.php | 16 ---------------- magic/check.php | 2 +- 2 files changed, 1 insertion(+), 17 deletions(-) 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\""; }