Zeile 204 | Zeile 204 |
---|
if($mybb->input['action'] == "newpost") { // First, figure out what time the thread or forum were last read
|
if($mybb->input['action'] == "newpost") { // First, figure out what time the thread or forum were last read
|
| $lastread = $cutoff = 0;
|
$query = $db->simple_select("threadsread", "dateline", "uid='{$mybb->user['uid']}' AND tid='{$thread['tid']}'"); $thread_read = $db->fetch_field($query, "dateline");
| $query = $db->simple_select("threadsread", "dateline", "uid='{$mybb->user['uid']}' AND tid='{$thread['tid']}'"); $thread_read = $db->fetch_field($query, "dateline");
|
Zeile 617 | Zeile 618 |
---|
// Decide what poll status to show depending on the status of the poll and whether or not the user voted already. if(isset($alreadyvoted) || isset($showresults) || isset($nopermission)) {
|
// Decide what poll status to show depending on the status of the poll and whether or not the user voted already. if(isset($alreadyvoted) || isset($showresults) || isset($nopermission)) {
|
if($alreadyvoted)
| $undovote = '';
if(isset($alreadyvoted))
|
{ $pollstatus = $lang->already_voted;
|
{ $pollstatus = $lang->already_voted;
|
$undovote = '';
| |
if($mybb->usergroup['canundovotes'] == 1) { eval("\$undovote = \"".$templates->get("showthread_poll_undovote")."\";"); } }
|
if($mybb->usergroup['canundovotes'] == 1) { eval("\$undovote = \"".$templates->get("showthread_poll_undovote")."\";"); } }
|
elseif($nopermission)
| elseif(isset($nopermission))
|
{ $pollstatus = $lang->no_voting_permission; }
| { $pollstatus = $lang->no_voting_permission; }
|
Zeile 665 | Zeile 667 |
---|
}
// Create the forum jump dropdown box.
|
}
// Create the forum jump dropdown box.
|
| $forumjump = '';
|
if($mybb->settings['enableforumjump'] != 0) { $forumjump = build_forum_jump("", $fid, 1);
| if($mybb->settings['enableforumjump'] != 0) { $forumjump = build_forum_jump("", $fid, 1);
|
Zeile 762 | Zeile 765 |
---|
// Work out the thread rating for this thread. $rating = $ratethread = ''; if($mybb->settings['allowthreadratings'] != 0 && $forum['allowtratings'] != 0)
|
// Work out the thread rating for this thread. $rating = $ratethread = ''; if($mybb->settings['allowthreadratings'] != 0 && $forum['allowtratings'] != 0)
|
{
| {
|
$rated = 0; $lang->load("ratethread"); if($thread['numratings'] <= 0)
| $rated = 0; $lang->load("ratethread"); if($thread['numratings'] <= 0)
|
Zeile 797 | Zeile 800 |
---|
}
// Can this user perform searches? If so, we can show them the "Search thread" form
|
}
// Can this user perform searches? If so, we can show them the "Search thread" form
|
| $search_thread='';
|
if($forumpermissions['cansearch'] != 0) { eval("\$search_thread = \"".$templates->get("showthread_search")."\";");
| if($forumpermissions['cansearch'] != 0) { eval("\$search_thread = \"".$templates->get("showthread_search")."\";");
|
Zeile 1047 | Zeile 1051 |
---|
else { $highlight = "&highlight=".urlencode($mybb->get_input('highlight'));
|
else { $highlight = "&highlight=".urlencode($mybb->get_input('highlight'));
|
}
| }
|
}
if($defaultmode != "linear")
| }
if($defaultmode != "linear")
|
Zeile 1126 | Zeile 1130 |
---|
if($mybb->settings['showsimilarthreads'] != 0) { $own_perm = '';
|
if($mybb->settings['showsimilarthreads'] != 0) { $own_perm = '';
|
if($forumpermissions['canonlyviewownthreads'] == 1)
| if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1)
|
{ $own_perm = " AND t.uid={$mybb->user['uid']}"; }
| { $own_perm = " AND t.uid={$mybb->user['uid']}"; }
|
Zeile 1191 | Zeile 1195 |
---|
{ $similar_thread['threadprefix'] = $prefix['displaystyle'].' '; }
|
{ $similar_thread['threadprefix'] = $prefix['displaystyle'].' '; }
|
| } else { $similar_thread['threadprefix'] = '';
|
}
$similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']);
| }
$similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']);
|
Zeile 1519 | Zeile 1527 |
---|
}
// Get users viewing this thread
|
}
// Get users viewing this thread
|
| $usersbrowsing='';
|
if($mybb->settings['browsingthisthread'] != 0) { $timecut = TIME_NOW - $mybb->settings['wolcutoff'];
| if($mybb->settings['browsingthisthread'] != 0) { $timecut = TIME_NOW - $mybb->settings['wolcutoff'];
|