Просмотр файла release_fix#2/mods/authdo.php

Размер файла: 495B
<?php
$mod_title="...";
$mod_status="on";
if($mod_status=="on")
{
function mod_body($auth,$adminauth)
{
if($auth=="ok")
{
echo "<html>
<head>
<meta http-equiv='Refresh' content='0;URL=index.php?do=game/index'>
</head>
</html>";
}
else
{
echo "<html>
<head>
<meta http-equiv='Refresh' content='0;URL=index.php?do=index'>
</head>
</html>";
}
}
}
else
{
function mod_body($auth,$adminauth)
{
echo "мод выключен администратором!<br>";
}
}
?>