File size: 1.06Kb
<?php
#-----------------------------------------------------#
# ********* ROTORCMS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
if (!defined('BASEDIR')) {
header("Location:../index.php");
exit;
}
// ------------------- Функция подсчета объявлений --------------------//
function stats_minichat() {
if (file_exists(DATADIR."/chat/chat.dat")) {
$files = file(DATADIR."/chat/chat.dat");
$data = explode("|", end($files));
if (isset($data[9])) {
return (int)$data[9];
}
}
return 0;
}
?>