Файл: install/inc/step_0.php
Строк: 54
<?
$set['title'] = 'Sngine Social - Установка Скрипта';
include_once 'inc/head.php'; // верхняя часть темы оформления
if(isset($_GET['yes']) && $_GET['step'] == '1')
{
$_SESSION['install_step']++;
header("Location: index.php?$passgen&".SID);
exit;
}
if (isset($_GET['no']))
echo '<div class="err">Необходимо согласиться с условием</div>';
echo "<form method='post' action='?".passgen()."'>";
echo "<input type='submit' name='refresh' value='Обновить' />";
echo "</form>";
?>
<div class="mess">
<b>Мастер Установки Sngine Social</b><br />
<font color='green'>Текущая версия: Sngine Social beta 1.0</font><br />
</div>
<div class="mess">
- Сайт поддержки <a href="http://sngine.su/">Ссылка</a><br />
- Над модификацией работал <a href="http://sngine.su/info.php?id=1" target="_blank">Sngine</a><br />
</div>
<?
echo "<form class='mess' method='get' action='index.php'>n";
echo "<input name='step' value='".($_SESSION['install_step']+1)."' type='hidden' />n";
echo "<input name='gen' value='$passgen' type='hidden' />n";
echo "<input value='Установить' name='yes' type='submit' />n";
echo "</form>n";
echo "<hr />n";
echo "<b>Шаг: $_SESSION[install_step]</b>n";
include_once 'inc/foot.php'; // нижняя часть темы оформления
?>