Размер файла: 2.6Kb
<?php
#-----------------------------------------------------#
# ********* WAP-MOTORS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
#================================================#
# == Мод чат для Wap-motor 19.x == #
# Made by: Shur1k #
# Site: WAP.ROVNO.UA #
# ICQ: 444307535 #
#================================================#
require_once "../../includes/start.php";
require_once "../../includes/functions.php";
require_once "../../includes/header.php";
include_once "../../themes/".$config['themes']."/index.php";
$msg = check($_POST['msg']);
show_title('partners.gif', 'Добавление сообщения');
if (is_user()){
if (utf_strlen(trim($msg))>3 && utf_strlen($msg)<1000){
antiflood("Location: index.php?isset=antiflood&".SID);
karantin($udata[6], "Location: index.php?isset=karantin&".SID);
statistics(8);
statistics(10);
$msg = no_br($msg,'<br />');
$msg = antimat($msg);
$msg = smiles($msg);
$file = file(DATADIR."2chat.dat");
$data = explode("|",end($file));
$text = no_br($msg.'|'.$log.'||'.SITETIME.'|'.$brow.'|'.$ip.'|0|'.$data[7].'|'.$data[8].'|');
write_files(DATADIR."2chat.dat", "$text\r\n");
$countstr = counter_string(DATADIR."2chat.dat");
if ($countstr>=$config['maxpostchat']) {
delete_lines(DATADIR."2chat.dat",array(0,1,2,3,4));
}
change_profil($log, array(14=>$ip, 12=>$udata[12]+1, 36=>$udata[36]+1, 41=>$udata[41]+1));
header ("Location: index.php?isset=addon&".SID); exit;
} else {show_error('Ошибка, слишком длинное или короткое сообщение!');}
} else {show_login('Вы не авторизованы, чтобы добавить сообщение, необходимо');}
echo '<br /><img src="/images/img/back.gif" alt="image" /> <a href="index.php?'.SID.'">Вернуться</a><br />';
echo '<img src="/images/img/homepage.gif" alt="image" /> <a href="../../index.php?'.SID.'">На главную</a>';
include_once ("../../themes/".$config['themes']."/foot.php");
?>