Удаление дублирующей функции
This commit is contained in:
parent
fbe7a7e8e4
commit
8b2defab33
@ -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 "<font color=red><b>Персонаж не найден.</b></font>";
|
|
||||||
} elseif ($us[0]) {
|
|
||||||
addchp(' (' . date("Y.m.d H:i") . ') <font color=darkblue>Сообщение телеграфом от </font><span oncontextmenu=OpenMenu()>' . nick::id($user['id'])->short() . '</span>: ' . $text . ' ', '{[]}' . $to . '{[]}');
|
|
||||||
} else {
|
|
||||||
// если в офе
|
|
||||||
mysql_query("INSERT INTO `telegraph` (`receiver`,`text`) VALUES ('" . $ur['id'] . "','" . '[' . date("d.m.Y H:i") . '] <font color=darkblue>Сообщение по телеграфу от </font><span oncontextmenu=OpenMenu()>' . nick::id($user['id'])->short() . '</span>: ' . $text . ' ' . "');");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function get_meshok()
|
function get_meshok()
|
||||||
{
|
{
|
||||||
global $user;
|
global $user;
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
mysql_query("INSERT INTO `lichka`(`id`,`pers`,`text`,`date`) VALUES ('','".$tar['id']."','$mess','".time()."');");
|
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()."');");
|
mysql_query("INSERT INTO `paldelo`(`id`,`author`,`text`,`date`) VALUES ('','".$_SESSION['uid']."','$mess','".time()."');");
|
||||||
|
|
||||||
tele_check($target,$messtel);
|
/*Тут была привязка к телеграфу*/
|
||||||
|
|
||||||
echo "<font color=red><b>Успешно поставлена проверка персонажу \"$target\"</b></font>";
|
echo "<font color=red><b>Успешно поставлена проверка персонажу \"$target\"</b></font>";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user