Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: polls.php 5486 2011-07-12 01:55:58Z jammerx2 $
| * $Id$
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'polls.php');
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'polls.php');
|
$templatelist = "poll_newpoll,redirect_pollposted,redirect_pollupdated,redirect_votethanks";
| $templatelist = "changeuserbox,loginbox,polls_newpoll_option,polls_newpoll,polls_editpoll_option,polls_editpoll,polls_showresults_resultbit,polls_showresults";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php"; require_once MYBB_ROOT."inc/class_parser.php";
| require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php"; require_once MYBB_ROOT."inc/class_parser.php";
|
Zeile 52 | Zeile 52 |
---|
$thread = $db->fetch_array($query); $fid = $thread['fid']; $forumpermissions = forum_permissions($fid);
|
$thread = $db->fetch_array($query); $fid = $thread['fid']; $forumpermissions = forum_permissions($fid);
|
| // Get forum info $forum = get_forum($fid); if(!$forum) { error($lang->error_invalidforum); } else { // Is our forum closed? if ($forum['open'] == 0) { // Doesn't look like it is error($lang->error_closedinvalidforum); } }
|
if(!$thread['tid']) {
| if(!$thread['tid']) {
|
Zeile 61 | Zeile 77 |
---|
build_forum_breadcrumb($fid); add_breadcrumb(htmlspecialchars_uni($thread['subject']), get_thread_link($thread['tid'])); add_breadcrumb($lang->nav_postpoll);
|
build_forum_breadcrumb($fid); add_breadcrumb(htmlspecialchars_uni($thread['subject']), get_thread_link($thread['tid'])); add_breadcrumb($lang->nav_postpoll);
|
// No permission if: Not thread author; not moderator; no forum perms to view, post threads, post polls if(($thread['uid'] != $mybb->user['uid'] && !is_moderator($fid)) || ($forumpermissions['canview'] == 0 || $forumpermissions['canpostthreads'] == 0 || $forumpermissions['canpostpolls'] == 0)) { error_no_permission();
| // No permission if: Not thread author; not moderator; no forum perms to view, post threads, post polls if(($thread['uid'] != $mybb->user['uid'] && !is_moderator($fid)) || ($forumpermissions['canview'] == 0 || $forumpermissions['canpostthreads'] == 0 || $forumpermissions['canpostpolls'] == 0)) { error_no_permission();
|
}
if($thread['poll'])
| }
if($thread['poll'])
|
Zeile 120 | Zeile 136 |
---|
else { $timeout = 0;
|
else { $timeout = 0;
|
}
| }
|
$plugins->run_hooks("polls_newpoll_end");
eval("\$newpoll = \"".$templates->get("polls_newpoll")."\";");
| $plugins->run_hooks("polls_newpoll_end");
eval("\$newpoll = \"".$templates->get("polls_newpoll")."\";");
|
Zeile 138 | Zeile 154 |
---|
$thread = $db->fetch_array($query); $fid = $thread['fid']; $forumpermissions = forum_permissions($fid);
|
$thread = $db->fetch_array($query); $fid = $thread['fid']; $forumpermissions = forum_permissions($fid);
|
| // Get forum info $forum = get_forum($fid); if(!$forum) { error($lang->error_invalidforum); } else { // Is our forum closed? if ($forum['open'] == 0) { // Doesn't look like it is error($lang->error_closedinvalidforum); } }
|
if(!$thread['tid'])
|
if(!$thread['tid'])
|
{
| {
|
error($lang->error_invalidthread); }
| error($lang->error_invalidthread); }
|
Zeile 148 | Zeile 180 |
---|
if(($thread['uid'] != $mybb->user['uid'] && !is_moderator($fid)) || ($forumpermissions['canview'] == 0 || $forumpermissions['canpostthreads'] == 0 || $forumpermissions['canpostpolls'] == 0)) { error_no_permission();
|
if(($thread['uid'] != $mybb->user['uid'] && !is_moderator($fid)) || ($forumpermissions['canview'] == 0 || $forumpermissions['canpostthreads'] == 0 || $forumpermissions['canpostpolls'] == 0)) { error_no_permission();
|
}
| }
|
if($thread['poll']) { error($lang->error_pollalready);
|
if($thread['poll']) { error($lang->error_pollalready);
|
}
| }
|
$polloptions = $mybb->input['polloptions']; if($mybb->settings['maxpolloptions'] && $polloptions > $mybb->settings['maxpolloptions']) { $polloptions = $mybb->settings['maxpolloptions'];
|
$polloptions = $mybb->input['polloptions']; if($mybb->settings['maxpolloptions'] && $polloptions > $mybb->settings['maxpolloptions']) { $polloptions = $mybb->settings['maxpolloptions'];
|
}
$postoptions = $mybb->input['postoptions']; if($postoptions['multiple'] != '1')
| }
$postoptions = $mybb->input['postoptions']; if($postoptions['multiple'] != '1')
|
{ $postoptions['multiple'] = 0; }
| { $postoptions['multiple'] = 0; }
|
Zeile 190 | Zeile 222 |
---|
{ $lengtherror = 1; break;
|
{ $lengtherror = 1; break;
|
}
| }
|
} if($lengtherror)
| } if($lengtherror)
|
Zeile 205 | Zeile 237 |
---|
$optionslist = ''; $voteslist = '';
|
$optionslist = ''; $voteslist = '';
|
for($i = 1; $i <= $optioncount; ++$i)
| for($i = 1; $i <= $polloptions; ++$i)
|
{ if(trim($options[$i]) != '') {
|
{ if(trim($options[$i]) != '') {
|
if($i > 1)
| if($optionslist != '')
|
{ $optionslist .= '||~|~||'; $voteslist .= '||~|~||'; }
|
{ $optionslist .= '||~|~||'; $voteslist .= '||~|~||'; }
|
$optionslist .= $options[$i];
| $optionslist .= trim($options[$i]);
|
$voteslist .= '0'; } }
| $voteslist .= '0'; } }
|
Zeile 249 | Zeile 281 |
---|
$db->update_query("threads", array('poll' => $pid), "tid='".$thread['tid']."'");
$plugins->run_hooks("polls_do_newpoll_end");
|
$db->update_query("threads", array('poll' => $pid), "tid='".$thread['tid']."'");
$plugins->run_hooks("polls_do_newpoll_end");
|
|
|
if($thread['visible'] == 1) { redirect(get_thread_link($thread['tid']), $lang->redirect_pollposted); } else {
|
if($thread['visible'] == 1) { redirect(get_thread_link($thread['tid']), $lang->redirect_pollposted); } else {
|
redirect(get_forum_link($forum['fid']), $lang->redirect_pollpostedmoderated);
| redirect(get_forum_link($thread['fid']), $lang->redirect_pollpostedmoderated);
|
} }
| } }
|
Zeile 268 | Zeile 300 |
---|
$query = $db->simple_select("polls", "*", "pid='$pid'"); $poll = $db->fetch_array($query);
|
$query = $db->simple_select("polls", "*", "pid='$pid'"); $poll = $db->fetch_array($query);
|
| if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
$query = $db->simple_select("threads", "*", "poll='$pid'"); $thread = $db->fetch_array($query); $tid = $thread['tid'];
|
$query = $db->simple_select("threads", "*", "poll='$pid'"); $thread = $db->fetch_array($query); $tid = $thread['tid'];
|
$fid = $thread['fid'];
// Make navigation build_forum_breadcrumb($fid); add_breadcrumb(htmlspecialchars_uni($thread['subject']), get_thread_link($thread['tid'])); add_breadcrumb($lang->nav_editpoll);
| $fid = $thread['fid'];
|
|
|
$forumpermissions = forum_permissions($fid);
$query = $db->simple_select("forums", "*", "fid='$fid'"); $forum = $db->fetch_array($query);
| // Make navigation build_forum_breadcrumb($fid); add_breadcrumb(htmlspecialchars_uni($thread['subject']), get_thread_link($thread['tid'])); add_breadcrumb($lang->nav_editpoll);
|
|
|
| $forumpermissions = forum_permissions($fid); // Get forum info $forum = get_forum($fid); if(!$forum) { error($lang->error_invalidforum); } else { // Is our forum closed? if($forum['open'] == 0) { // Doesn't look like it is error($lang->error_closedinvalidforum); } }
|
if(!$tid) {
| if(!$tid) {
|
Zeile 428 | Zeile 476 |
---|
$query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query);
|
$query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query);
|
| if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
$query = $db->simple_select("threads", "*", "poll='".intval($mybb->input['pid'])."'"); $thread = $db->fetch_array($query);
$forumpermissions = forum_permissions($thread['fid']);
|
$query = $db->simple_select("threads", "*", "poll='".intval($mybb->input['pid'])."'"); $thread = $db->fetch_array($query);
$forumpermissions = forum_permissions($thread['fid']);
|
$query = $db->simple_select("forums", "*", "fid='".$thread['fid']."'"); $forum = $db->fetch_array($query);
| // Get forum info $forum = get_forum($thread['fid']); if(!$forum) { error($lang->error_invalidforum); } else { // Is our forum closed? if($forum['open'] == 0) { // Doesn't look like it is error($lang->error_closedinvalidforum); } }
|
if($thread['visible'] == 0 || !$thread['tid']) {
| if($thread['visible'] == 0 || !$thread['tid']) {
|
Zeile 506 | Zeile 572 |
---|
$voteslist = ''; $numvotes = ''; $votes = $mybb->input['votes'];
|
$voteslist = ''; $numvotes = ''; $votes = $mybb->input['votes'];
|
for($i = 1; $i <= $optioncount; ++$i)
| for($i = 1; $i <= $numoptions; ++$i)
|
{ if(trim($options[$i]) != '') {
|
{ if(trim($options[$i]) != '') {
|
if($i > 1)
| if($optionslist != '')
|
{ $optionslist .= "||~|~||"; $voteslist .= "||~|~||"; }
|
{ $optionslist .= "||~|~||"; $voteslist .= "||~|~||"; }
|
$optionslist .= $options[$i];
| $optionslist .= trim($options[$i]);
|
if(intval($votes[$i]) <= 0) { $votes[$i] = "0";
| if(intval($votes[$i]) <= 0) { $votes[$i] = "0";
|
Zeile 539 | Zeile 605 |
---|
"question" => $db->escape_string($mybb->input['question']), "options" => $db->escape_string($optionslist), "votes" => $db->escape_string($voteslist),
|
"question" => $db->escape_string($mybb->input['question']), "options" => $db->escape_string($optionslist), "votes" => $db->escape_string($voteslist),
|
"numoptions" => intval($numoptions),
| "numoptions" => intval($optioncount),
|
"numvotes" => $numvotes, "timeout" => $timeout, "closed" => $postoptions['closed'],
| "numvotes" => $numvotes, "timeout" => $timeout, "closed" => $postoptions['closed'],
|
Zeile 564 | Zeile 630 |
---|
{ $query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query);
|
{ $query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query);
|
| if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
$tid = $poll['tid']; $query = $db->simple_select("threads", "*", "tid='$tid'"); $thread = $db->fetch_array($query);
| $tid = $poll['tid']; $query = $db->simple_select("threads", "*", "tid='$tid'"); $thread = $db->fetch_array($query);
|
Zeile 572 | Zeile 644 |
---|
// Get forum info $forum = get_forum($fid); if(!$forum)
|
// Get forum info $forum = get_forum($fid); if(!$forum)
|
{
| {
|
error($lang->error_invalidforum); }
|
error($lang->error_invalidforum); }
|
|
|
$forumpermissions = forum_permissions($forum['fid']);
|
$forumpermissions = forum_permissions($forum['fid']);
|
|
|
$plugins->run_hooks("polls_showresults_start");
|
$plugins->run_hooks("polls_showresults_start");
|
if($forumpermissions['canviewthreads'] == 0 || $forumpermissions['canview'] == 0)
| if($forumpermissions['canviewthreads'] == 0 || $forumpermissions['canview'] == 0 || ($forumpermissions['canonlyviewownthreads'] != 0 && $thread['uid'] != $mybb->user['uid']))
|
{
|
{
|
error($lang->error_pollpermissions);
| error_no_permission();
|
} if(!$poll['pid'])
| } if(!$poll['pid'])
|
Zeile 722 | Zeile 794 |
---|
if($mybb->input['action'] == "vote" && $mybb->request_method == "post") { // Verify incoming POST request
|
if($mybb->input['action'] == "vote" && $mybb->request_method == "post") { // Verify incoming POST request
|
verify_post_check($mybb->input['my_post_key']); $query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query); $poll['timeout'] = $poll['timeout']*60*60*24;
$plugins->run_hooks("polls_vote_start");
| verify_post_check($mybb->input['my_post_key']); $query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query); $poll['timeout'] = $poll['timeout']*60*60*24;
$plugins->run_hooks("polls_vote_start");
|
if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
|
|
$query = $db->simple_select("threads", "*", "poll='".$poll['pid']."'"); $thread = $db->fetch_array($query);
if(!$thread['tid'])
|
$query = $db->simple_select("threads", "*", "poll='".$poll['pid']."'"); $thread = $db->fetch_array($query);
if(!$thread['tid'])
|
{
| {
|
error($lang->error_invalidthread);
|
error($lang->error_invalidthread);
|
}
| }
|
$fid = $thread['fid']; $forumpermissions = forum_permissions($fid); if($forumpermissions['canvotepolls'] == 0) { error_no_permission();
|
$fid = $thread['fid']; $forumpermissions = forum_permissions($fid); if($forumpermissions['canvotepolls'] == 0) { error_no_permission();
|
}
| } // Get forum info $forum = get_forum($fid); if(!$forum) { error($lang->error_invalidforum); } else { // Is our forum closed? if ($forum['open'] == 0) { // Doesn't look like it is error($lang->error_closedinvalidforum); } }
|
$expiretime = $poll['dateline'] + $poll['timeout']; $now = TIME_NOW; if($poll['closed'] == 1 || $thread['closed'] == 1 || ($expiretime < $now && $poll['timeout']))
| $expiretime = $poll['dateline'] + $poll['timeout']; $now = TIME_NOW; if($poll['closed'] == 1 || $thread['closed'] == 1 || ($expiretime < $now && $poll['timeout']))
|
Zeile 758 | Zeile 846 |
---|
} if(!isset($mybb->input['option']))
|
} if(!isset($mybb->input['option']))
|
{ error($lang->error_nopolloptions);
| { error($lang->error_nopolloptions);
|
} // Check if the user has voted before...
| } // Check if the user has voted before...
|
Zeile 793 | Zeile 881 |
---|
$now = TIME_NOW; $votesarray = explode("||~|~||", $poll['votes']); $option = $mybb->input['option'];
|
$now = TIME_NOW; $votesarray = explode("||~|~||", $poll['votes']); $option = $mybb->input['option'];
|
$numvotes = $poll['numvotes'];
| $numvotes = (int)$poll['numvotes'];
|
if($poll['multiple'] == 1) {
|
if($poll['multiple'] == 1) {
|
foreach($option as $voteoption => $vote)
| if(is_array($option))
|
{
|
{
|
if($vote == 1 && isset($votesarray[$voteoption-1]))
| foreach($option as $voteoption => $vote)
|
{
|
{
|
if($votesql)
| if($vote == 1 && isset($votesarray[$voteoption-1]))
|
{
|
{
|
$votesql .= ",";
| if($votesql) { $votesql .= ","; } $votesql .= "('".$poll['pid']."','".$mybb->user['uid']."','".$db->escape_string($voteoption)."','$now')"; $votesarray[$voteoption-1]++; $numvotes = $numvotes+1;
|
}
|
}
|
$votesql .= "('".$poll['pid']."','".$mybb->user['uid']."','".$db->escape_string($voteoption)."','$now')"; $votesarray[$voteoption-1]++; $numvotes = $numvotes+1;
| |
} } } else {
|
} } } else {
|
if(!isset($votesarray[$option-1]))
| if(is_array($option) || !isset($votesarray[$option-1]))
|
{ error($lang->error_nopolloptions); } $votesql = "('".$poll['pid']."','".$mybb->user['uid']."','".$db->escape_string($option)."','$now')"; $votesarray[$option-1]++; $numvotes = $numvotes+1;
|
{ error($lang->error_nopolloptions); } $votesql = "('".$poll['pid']."','".$mybb->user['uid']."','".$db->escape_string($option)."','$now')"; $votesarray[$option-1]++; $numvotes = $numvotes+1;
|
| }
if(!$votesql) { error($lang->error_nopolloptions);
|
}
$db->write_query("
| }
$db->write_query("
|
Zeile 861 | Zeile 957 |
---|
$query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query);
|
$query = $db->simple_select("polls", "*", "pid='".intval($mybb->input['pid'])."'"); $poll = $db->fetch_array($query);
|
| $poll['numvotes'] = (int)$poll['numvotes'];
|
if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
if(!$poll['pid']) { error($lang->error_invalidpoll); }
|
| // We do not have $forum_cache available here since no forums permissions are checked in undo vote // Get thread ID and then get forum info $query = $db->simple_select("threads", "*", "tid='".intval($poll['tid'])."'"); $thread = $db->fetch_array($query); $fid = $thread['fid']; // Get forum info $forum = get_forum($fid); if(!$forum) { error($lang->error_invalidforum); } else { // Is our forum closed? if ($forum['open'] == 0) { // Doesn't look like it is error($lang->error_closedinvalidforum); } }
|
$poll['timeout'] = $poll['timeout']*60*60*24;
| $poll['timeout'] = $poll['timeout']*60*60*24;
|
Zeile 889 | Zeile 1009 |
---|
{ // for Guests, we simply see if they've got the cookie $vote_options = explode(',', $mybb->cookies['pollvotes'][$poll['pid']]);
|
{ // for Guests, we simply see if they've got the cookie $vote_options = explode(',', $mybb->cookies['pollvotes'][$poll['pid']]);
|
}
| }
|
$votecheck = !empty($vote_options); if(!$votecheck)
| $votecheck = !empty($vote_options); if(!$votecheck)
|
Zeile 901 | Zeile 1021 |
---|
// clear cookie for Guests my_setcookie("pollvotes[{$poll['pid']}]", ""); }
|
// clear cookie for Guests my_setcookie("pollvotes[{$poll['pid']}]", ""); }
|
|
|
// Note, this is not thread safe! $votesarray = explode("||~|~||", $poll['votes']); if(count($votesarray) > $poll['numoptions'])
| // Note, this is not thread safe! $votesarray = explode("||~|~||", $poll['votes']); if(count($votesarray) > $poll['numoptions'])
|
Zeile 912 | Zeile 1032 |
---|
if($poll['multiple'] == 1) { foreach($vote_options as $vote)
|
if($poll['multiple'] == 1) { foreach($vote_options as $vote)
|
{
| {
|
if(isset($votesarray[$vote-1])) { --$votesarray[$vote-1];
| if(isset($votesarray[$vote-1])) { --$votesarray[$vote-1];
|
Zeile 924 | Zeile 1044 |
---|
{ $voteoption = reset($vote_options); if(isset($votesarray[$voteoption-1]))
|
{ $voteoption = reset($vote_options); if(isset($votesarray[$voteoption-1]))
|
{
| {
|
--$votesarray[$voteoption-1]; --$poll['numvotes']; }
| --$votesarray[$voteoption-1]; --$poll['numvotes']; }
|
Zeile 959 | Zeile 1079 |
---|
redirect(get_thread_link($poll['tid']), $lang->redirect_unvoted); }
|
redirect(get_thread_link($poll['tid']), $lang->redirect_unvoted); }
|
| |
?>
| ?>
|