Файл: antispam/install.php
Строк: 23
<?php
// Автор модуля: vermas
define('_IN_JOHNCMS', 1);
require_once("../incfiles/core.php");
require_once("../incfiles/head.php");
mysql_query("DROP TABLE IF EXISTS `verm_antispam`");
mysql_query("CREATE TABLE IF NOT EXISTS `verm_antispam` (
`id` int(11) NOT NULL auto_increment,
`mail_id` int(11) NOT NULL,
`author_id` int(11) NOT NULL,
`author_name` varchar(100) NOT NULL,
`from_id` int(11) NOT NULL,
`from_name` varchar(100) NOT NULL,
`time` int(11) NOT NULL,
`temko` varchar(100) NOT NULL,
`text` text NOT NULL,
`checked` int(11) NOT NULL,
`checked_time` int(11) NOT NULL,
`checked_name` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1");
echo '<div class="phdr">Драп выполнен! Немедленно удалите этот файл!</div>';
require_once("../incfiles/end.php");
?>