Файл: region_clean/openlogr.php
Строк: 68
<?php
#######################################
## Mod By KoT (borispol) [76-75-072] ##
#######################################
require_once "start.php";
require_once "sid.php";
header("Cache-Control: no-cache");
if ($ver == "wml") header ("Content-type:text/vnd.wap.wml; charset=utf-8");
else header("Content-Type:text/html; charset=UTF-8");
require_once "inc.php";
$link = connect_db();
list($row, $id, $ps, $fsize1, $fsize2) = check_login($link);
require_once "version.php";
if ($row['level'] < 7) {
if ($ver == "wml") {
echo $xml;
echo $dtd;
echo "<wml>n
<card id="error" title="Ошибка доступа" ontimer="enter.php?$ses&ref=$ref"><timer value="15"/>
<p align="center">n";
} else {
echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><link rel="stylesheet" type="text/css" href="css/$css.css"/>
<title>Ошибка доступа</title>
<META HTTP-EQUIV="Refresh" CONTENT="2; URL=enter.php?$ses&ref=$ref">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head><body>
<div align="center">";
}
echo $fsize1;
echo 'У тебя нет прав доступа!<br/>';
echo $fsize1;
include_once "foot.php";
exit;
}
$us = $row['user'];
$signs = 999;
function gettime()
{
$part_time = explode(' ', microtime());
$real_time = $part_time[1].substr($part_time[0], 1);
return $real_time;
}
if ($ver == "wml") {
echo $xml;
echo $dtd;
echo "<wml>
<card title="Логи Админ-комнаты">
<p>";
} else {
echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><link rel="stylesheet" type="text/css" href="css/$css.css"/>
<title>Логи Админ-комнаты</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head><body>
<div align="left">";
}
echo $fsize1;
echo '<div class="c4">Логи Админ-комнаты</div><br/>';
$start = gettime();
$log = file("log/admroom.dat");
$log = array_reverse($log);
$text = @implode("",$log);
$string = substr("$text", $n, $signs);
$m = $n + $signs;
echo $string;
if ($string != '') {
echo "<br/>".$divide."<a href="openlogr.php?n=$m&$ses&ref=$ref">Далее</a><br/>";
}
echo "<a href="./apanel.php?$ses&ref=$ref">Админка</a><br/>
<a href="./enter.php?$ses&ref=$ref">Прихожая</a><br/>";
echo $fsize2;
include_once "foot.php";
?>