Zeile 29 | Zeile 29 |
---|
} else {
|
} else {
|
| $username = '';
|
eval("\$loginbox = \"".$templates->get("loginbox")."\";"); }
| eval("\$loginbox = \"".$templates->get("loginbox")."\";"); }
|
Zeile 690 | Zeile 691 |
---|
{ $votes[$i] = "0"; }
|
{ $votes[$i] = "0"; }
|
$voteslist .= $votes[$i];
| $voteslist .= (int)$votes[$i];
|
$numvotes = (int)$numvotes + (int)$votes[$i]; } }
| $numvotes = (int)$numvotes + (int)$votes[$i]; } }
|
Zeile 779 | Zeile 780 |
---|
add_breadcrumb(htmlspecialchars_uni($thread['subject']), get_thread_link($thread['tid'])); add_breadcrumb($lang->nav_pollresults);
|
add_breadcrumb(htmlspecialchars_uni($thread['subject']), get_thread_link($thread['tid'])); add_breadcrumb($lang->nav_pollresults);
|
$voters = $votedfor = array();
| $voters = $votedfor = $guest_voters = array();
|
// Calculate votes $query = $db->query("
| // Calculate votes $query = $db->query("
|
Zeile 801 | Zeile 802 |
---|
if($voter['uid'] == 0 || $voter['username'] == '') { // Add one to the number of voters for guests
|
if($voter['uid'] == 0 || $voter['username'] == '') { // Add one to the number of voters for guests
|
++$guest_voters[$voter['voteoption']];
| if(isset($guest_voters[$voter['voteoption']])) { ++$guest_voters[$voter['voteoption']]; } else { $guest_voters[$voter['voteoption']] = 1; }
|
} else {
| } else {
|
Zeile 815 | Zeile 823 |
---|
for($i = 1; $i <= $poll['numoptions']; ++$i) { $poll['totvotes'] = $poll['totvotes'] + $votesarray[$i-1];
|
for($i = 1; $i <= $poll['numoptions']; ++$i) { $poll['totvotes'] = $poll['totvotes'] + $votesarray[$i-1];
|
}
| }
|
$polloptions = ''; for($i = 1; $i <= $poll['numoptions']; ++$i) {
| $polloptions = ''; for($i = 1; $i <= $poll['numoptions']; ++$i) {
|
Zeile 845 | Zeile 853 |
---|
}
if($votes == 0)
|
}
if($votes == 0)
|
{
| {
|
$percent = 0; } else
| $percent = 0; } else
|
Zeile 874 | Zeile 882 |
---|
if($guest_voters[$number] == 1) { $userlist .= $guest_comma.$lang->guest_count;
|
if($guest_voters[$number] == 1) { $userlist .= $guest_comma.$lang->guest_count;
|
}
| }
|
else { $userlist .= $guest_comma.$lang->sprintf($lang->guest_count_multiple, $guest_voters[$number]);
| else { $userlist .= $guest_comma.$lang->sprintf($lang->guest_count_multiple, $guest_voters[$number]);
|
Zeile 917 | Zeile 925 |
---|
$poll['timeout'] = $poll['timeout']*60*60*24;
|
$poll['timeout'] = $poll['timeout']*60*60*24;
|
$query = $db->simple_select("threads", "*", "poll='".(int)$poll['pid']."'"); $thread = $db->fetch_array($query);
| $thread = get_thread($poll['tid']);
|
if(!$thread || ($thread['visible'] != 1 && ($thread['visible'] == 0 && !is_moderator($thread['fid'], "canviewunapprove")) || ($thread['visible'] == -1 && !is_moderator($thread['fid'], "canviewdeleted")))) {
| if(!$thread || ($thread['visible'] != 1 && ($thread['visible'] == 0 && !is_moderator($thread['fid'], "canviewunapprove")) || ($thread['visible'] == -1 && !is_moderator($thread['fid'], "canviewdeleted")))) {
|
Zeile 1151 | Zeile 1158 |
---|
$votesarray = explode("||~|~||", $poll['votes']); if(count($votesarray) > $poll['numoptions']) {
|
$votesarray = explode("||~|~||", $poll['votes']); if(count($votesarray) > $poll['numoptions']) {
|
$votesarray = array_slice(0, $poll['numoptions']);
| $votesarray = array_slice($votesarray, 0, $poll['numoptions']);
|
}
if($poll['multiple'] == 1)
| }
if($poll['multiple'] == 1)
|