Размер файла: 4.3Kb
<?php
/*
////////////////////////////////////////////////////////////////////////////////
// JohnCMS Mobile Content Management System //
// Project site: http://johncms.com //
// Support site: http://gazenwagen.com //
////////////////////////////////////////////////////////////////////////////////
// Lead Developer: Oleg Kasyanov (AlkatraZ) [email protected] //
// Development Team: Eugene Ryabinin (john77) [email protected] //
// Dmitry Liseenko (FlySelf) [email protected] //
////////////////////////////////////////////////////////////////////////////////
*/
defined('_IN_JOHNCMS') or die('Error: restricted access');
if ($rights == 3 || $rights >= 6) {
$topic = mysql_result(mysql_query("SELECT COUNT(*) FROM `forum` WHERE `type`='t' AND `id`='$id' AND `edit` != '1'"), 0);
$topic_vote = mysql_result(mysql_query("SELECT COUNT(*) FROM `cms_forum_vote` WHERE `type`='1' AND `topic`='$id'"), 0);
require_once('../incfiles/head.php');
if ($topic_vote != 0 || $topic == 0) {
echo functions::display_error($lng['error_wrong_data'], '<a href="' . htmlspecialchars(getenv("HTTP_REFERER")) . '">' . $lng['back'] . '</a>');
require('../incfiles/end.php');
exit;
}
if (isset($_POST['submit'])) {
$vote_name = mb_substr(trim($_POST['name_vote']), 0, 50);
if (!empty($vote_name) && !empty($_POST[0]) && !empty($_POST[1]) && !empty($_POST['count_vote'])) {
mysql_query("INSERT INTO `cms_forum_vote` SET
`name`='" . mysql_real_escape_string($vote_name) . "',
`time`='$realtime',
`type` = '1',
`topic`='$id'
");
mysql_query("UPDATE `forum` SET `realid` = '1' WHERE `id` = '$id'");
$vote_count = abs(intval($_POST['count_vote']));
if ($vote_count > 8)
$vote_count = 8;
else if ($vote_count < 2)
$vote_count = 2;
for ($vote = 0; $vote < $vote_count; $vote++) {
$text = mb_substr(trim($_POST[$vote]), 0, 30);
if (empty($text)) {
continue;
}
mysql_query("INSERT INTO `cms_forum_vote` SET
`name`='" . mysql_real_escape_string($text) . "',
`type` = '2',
`topic`='$id'
");
}
echo $lng_forum['voting_added'] . '<br /><a href="?id=' . $id . '">' . $lng['continue'] . '</a>';
} else
echo $lng['error_empty_fields'] . '<br /><a href="?act=addvote&id=' . $id . '">' . $lng['repeat'] . '</a>';
} else {
echo '<form action="index.php?act=addvote&id=' . $id . '" method="post">' .
'<br />' . $lng_forum['voting'] . ':<br/>' .
'<input type="text" size="20" maxlength="150" name="name_vote" value="' . htmlentities($_POST['name_vote'], ENT_QUOTES, 'UTF-8') . '"/><br/>';
if (isset($_POST['plus']))
++$_POST['count_vote'];
elseif (isset($_POST['minus']))
--$_POST['count_vote'];
if ($_POST['count_vote'] < 2 || empty($_POST['count_vote']))
$_POST['count_vote'] = 2;
elseif ($_POST['count_vote'] > 8)
$_POST['count_vote'] = 8;
for ($vote = 0; $vote < $_POST['count_vote']; $vote++) {
echo $lng_forum['answer'] . ' ' . ($vote + 1) . '(max. 50): <br/><input type="text" name="' . $vote . '" value="' . htmlentities($_POST[$vote], ENT_QUOTES, 'UTF-8') . '"/><br/>';
}
echo '<input type="hidden" name="count_vote" value="' . abs(intval($_POST['count_vote'])) . '"/>';
echo ($_POST['count_vote'] < 8) ? '<br/><input type="submit" name="plus" value="' . $lng_forum['add_answer'] . '"/>' : '';
echo $_POST['count_vote'] > 2 ? '<input type="submit" name="minus" value="' . $lng_forum['delete_last'] . '"/><br/>' : '<br/>';
echo '<p><input type="submit" name="submit" value="' . $lng['save'] . '"/></p></form>';
echo '<a href="index.php?id=' . $id . '">' . $lng['back'] . '</a>';
}
} else {
header('location: ../index.php?err');
}
?>