ошибки Undefined.
This commit is contained in:
parent
fc663a8c42
commit
5c01742890
2
main.php
2
main.php
@ -567,7 +567,7 @@ unset($iloc, $iloce);
|
||||
/*-----------------------*/
|
||||
$spl = Db::getValue('select exp from levels where nextLevel = ? order by exp limit 1', [$u->info['level'] + 1]);
|
||||
|
||||
echo '<script>top.myexpLineTop27(' . $u->info['exp'] . ',' . $spl . ')' . $tjs . 'top.ctest("' . $u->info['city'] . '");top.sd4key="' . $u->info['nextAct'] . '"; var battle = ' . (0 + $u->info['battle']) . '; top.hic();</script></body>
|
||||
echo '<script>top.myexpLineTop27(' . $u->info['exp'] . ',' . $spl . ')' . $tjs . ';top.sd4key="' . $u->info['nextAct'] . '"; var battle = ' . (0 + $u->info['battle']) . '; top.hic();</script></body>
|
||||
</html>';
|
||||
|
||||
//Сломаное обучение. Как оно достало! Ins. 🤬
|
||||
|
27
online.php
27
online.php
@ -173,7 +173,7 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
|
||||
$_POST['msg'] = str_replace(" ", '[s3;]TAB[s4;]', $_POST['msg']);
|
||||
$_POST['msg'] = str_replace("", '[s3;]TAB[s4;]', $_POST['msg']);
|
||||
|
||||
$_POST['msg'] = htmlspecialchars($_POST['msg'], null);
|
||||
$_POST['msg'] = htmlspecialchars($_POST['msg']);
|
||||
$_POST['msg'] = str_replace('%usersmile%', '', $_POST['msg']);
|
||||
$_POST['msg'] = tolink($_POST['msg']);
|
||||
|
||||
@ -194,7 +194,7 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
|
||||
$lmg = 0;
|
||||
}
|
||||
$testsmg = ' ' . $_POST['msg'] . ' ';
|
||||
if ($testsmg == $smg['text'] && $u->info['exp'] > 100000) {
|
||||
if (!empty($smg) && $testsmg == $smg['text'] && $u->info['exp'] > 100000) {
|
||||
if ($u->info['molch1'] < time()) {
|
||||
|
||||
//Молчанка за флуд на 5 минут
|
||||
@ -332,12 +332,15 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
|
||||
unset($admq);
|
||||
}
|
||||
|
||||
if (!empty($pl['login'])) {
|
||||
$qix = Db::getValue('select id from friends where ignor > 0 and login_ignor = ? and (user_ignor = ? or user = ?)', [$pl['login'], $u->info['login'], $u->info['id']]);
|
||||
}
|
||||
|
||||
$qix = Db::getValue('select id from friends where ignor > 0 and login_ignor = ? and (user_ignor = ? or user = ?)', [$pl['login'], $u->info['login'], $u->info['id']]);
|
||||
if (isset($qix)) {
|
||||
$r['js'] .= 'chat.sendMsg(["new","' . time() . '","6","","' . $u->info['login'] . '","<b>Вас добавили в игнор</b>: Вы не можете отправлять сообщения персонажу "' . htmlspecialchars(
|
||||
$msg['to']
|
||||
) . '".","Black","1","1","0"]);';
|
||||
if (is_array($msg['to'])) {// каким хером тут массив?
|
||||
$msg['to'] = '';
|
||||
}
|
||||
$r['js'] .= 'chat.sendMsg(["new","' . time() . '","6","","' . $u->info['login'] . '","<b>Вас добавили в игнор</b>: Вы не можете отправлять сообщения персонажу "' . htmlspecialchars($msg['to']) . '".","Black","1","1","0"]);';
|
||||
$msg['cancel']++;
|
||||
}
|
||||
if ($msg['type'] == 3 && $msg['to'] == 'klan') {
|
||||
@ -473,13 +476,15 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
|
||||
|
||||
}
|
||||
|
||||
$ar_id = 0;
|
||||
$ar_lvl = 0;
|
||||
$ar_all = '0';
|
||||
|
||||
//Получаем список онлайн
|
||||
if ($_GET['r1'] != 0) {
|
||||
if (!empty($_GET['r1'])) {
|
||||
// $_GET['r3'] передаётся из onlineList.js как переключатель "все пользователи\пользователи в комнате".
|
||||
define('BOT_ROOM', 303);
|
||||
$ar_id = 0;
|
||||
$ar_lvl = 0;
|
||||
$ar_all = '0';
|
||||
|
||||
$usl = [];
|
||||
$cw = [];
|
||||
$usid = [];
|
||||
@ -960,7 +965,7 @@ if (empty($_COOKIE['chatCfg12'])) {
|
||||
if ($r['key'] == $_GET['key']) {
|
||||
//Список онлайн остается неизменным
|
||||
unset($r['rn'], $r['list'], $r['key'], $r['xu']);
|
||||
} elseif ($_GET['r1'] != 0) {
|
||||
} elseif (!empty($_GET['r1'])) {
|
||||
$r['rn'] = $u->room['name'];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user