Zeile 19 | Zeile 19 |
---|
$templatelist .= ",showthread_usersbrowsing,showthread_usersbrowsing_user,showthread_poll_option,showthread_poll,showthread_quickreply_options_signature,showthread_threaded_bitactive,showthread_threaded_bit,postbit_attachments_attachment_unapproved"; $templatelist .= ",showthread_moderationoptions_openclose,showthread_moderationoptions_stickunstick,showthread_moderationoptions_delete,showthread_moderationoptions_threadnotes,showthread_moderationoptions_manage,showthread_moderationoptions_deletepoll"; $templatelist .= ",postbit_userstar,postbit_reputation_formatted_link,postbit_warninglevel_formatted,postbit_quickrestore,forumdisplay_password,forumdisplay_password_wrongpass,postbit_purgespammer,showthread_inlinemoderation_approve,forumdisplay_thread_icon";
|
$templatelist .= ",showthread_usersbrowsing,showthread_usersbrowsing_user,showthread_poll_option,showthread_poll,showthread_quickreply_options_signature,showthread_threaded_bitactive,showthread_threaded_bit,postbit_attachments_attachment_unapproved"; $templatelist .= ",showthread_moderationoptions_openclose,showthread_moderationoptions_stickunstick,showthread_moderationoptions_delete,showthread_moderationoptions_threadnotes,showthread_moderationoptions_manage,showthread_moderationoptions_deletepoll"; $templatelist .= ",postbit_userstar,postbit_reputation_formatted_link,postbit_warninglevel_formatted,postbit_quickrestore,forumdisplay_password,forumdisplay_password_wrongpass,postbit_purgespammer,showthread_inlinemoderation_approve,forumdisplay_thread_icon";
|
$templatelist .= ",showthread_moderationoptions_softdelete,showthread_moderationoptions_restore,post_captcha,post_captcha_recaptcha,post_captcha_recaptcha_invisible,post_captcha_nocaptcha,showthread_moderationoptions,showthread_inlinemoderation_standard,showthread_inlinemoderation_manage";
| $templatelist .= ",showthread_moderationoptions_softdelete,showthread_moderationoptions_restore,post_captcha,post_captcha_recaptcha_invisible,post_captcha_nocaptcha,showthread_moderationoptions,showthread_inlinemoderation_standard,showthread_inlinemoderation_manage";
|
$templatelist .= ",showthread_ratethread,postbit_posturl,postbit_icon,postbit_editedby_editreason,attachment_icon,global_moderation_notice,showthread_poll_option_multiple,postbit_gotopost,postbit_rep_button,postbit_warninglevel,showthread_threadnoteslink"; $templatelist .= ",showthread_moderationoptions_approve,showthread_moderationoptions_unapprove,showthread_inlinemoderation_delete,showthread_moderationoptions_standard,showthread_quickreply_options_close,showthread_inlinemoderation_custom,showthread_search"; $templatelist .= ",postbit_profilefield_multiselect_value,postbit_profilefield_multiselect,showthread_subscription,postbit_deleted_member,postbit_away,postbit_warn,postbit_classic,postbit_reputation,postbit_deleted,postbit_offline,postbit_online,postbit_signature";
| $templatelist .= ",showthread_ratethread,postbit_posturl,postbit_icon,postbit_editedby_editreason,attachment_icon,global_moderation_notice,showthread_poll_option_multiple,postbit_gotopost,postbit_rep_button,postbit_warninglevel,showthread_threadnoteslink"; $templatelist .= ",showthread_moderationoptions_approve,showthread_moderationoptions_unapprove,showthread_inlinemoderation_delete,showthread_moderationoptions_standard,showthread_quickreply_options_close,showthread_inlinemoderation_custom,showthread_search"; $templatelist .= ",postbit_profilefield_multiselect_value,postbit_profilefield_multiselect,showthread_subscription,postbit_deleted_member,postbit_away,postbit_warn,postbit_classic,postbit_reputation,postbit_deleted,postbit_offline,postbit_online,postbit_signature";
|
Zeile 459 | Zeile 459 |
---|
// Show the entire thread (taking into account pagination). if($mybb->input['action'] == "thread") {
|
// Show the entire thread (taking into account pagination). if($mybb->input['action'] == "thread") {
|
if($thread['firstpost'] == 0)
| // This is a workaround to fix threads which data may get "corrupted" due to lag or other still unknown reasons if($thread['firstpost'] == 0 || $thread['dateline'] == 0)
|
{ update_first_post($tid); }
| { update_first_post($tid); }
|
Zeile 482 | Zeile 483 |
---|
$showresults = 1; }
|
$showresults = 1; }
|
// If the user is not a guest, check if he already voted. if($mybb->user['uid'] != 0)
| if($forumpermissions['canvotepolls'] != 1)
|
{
|
{
|
$query = $db->simple_select("pollvotes", "*", "uid='".$mybb->user['uid']."' AND pid='".$poll['pid']."'"); while($votecheck = $db->fetch_array($query)) { $alreadyvoted = 1; $votedfor[$votecheck['voteoption']] = 1; }
| $nopermission = 1; }
// Check if the user has voted before... if($mybb->user['uid']) { $user_check = "uid='{$mybb->user['uid']}'";
|
} else {
|
} else {
|
if(isset($mybb->cookies['pollvotes'][$poll['pid']]) && $mybb->cookies['pollvotes'][$poll['pid']] !== "") { $alreadyvoted = 1; }
| $user_check = "uid='0' AND ipaddress=".$db->escape_binary($session->packedip); }
$query = $db->simple_select("pollvotes", "*", "{$user_check} AND pid='".$poll['pid']."'"); while($votecheck = $db->fetch_array($query)) { $alreadyvoted = 1; $votedfor[$votecheck['voteoption']] = 1;
|
}
|
}
|
|
|
$optionsarray = explode("||~|~||", $poll['options']); $votesarray = explode("||~|~||", $poll['votes']); $poll['question'] = htmlspecialchars_uni($poll['question']); $polloptions = ''; $totalvotes = 0; $poll['totvotes'] = 0;
|
$optionsarray = explode("||~|~||", $poll['options']); $votesarray = explode("||~|~||", $poll['votes']); $poll['question'] = htmlspecialchars_uni($poll['question']); $polloptions = ''; $totalvotes = 0; $poll['totvotes'] = 0;
|
|
|
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];
|
Zeile 549 | Zeile 555 |
---|
{ $optionbg = "trow1"; $votestar = "";
|
{ $optionbg = "trow1"; $votestar = "";
|
}
| }
|
// If the user already voted or if the results need to be shown, do so; else show voting screen. if(isset($alreadyvoted) || isset($showresults)) { if((int)$votes == "0")
|
// If the user already voted or if the results need to be shown, do so; else show voting screen. if(isset($alreadyvoted) || isset($showresults)) { if((int)$votes == "0")
|
{
| {
|
$percent = "0";
|
$percent = "0";
|
}
| }
|
else { $percent = number_format($votes / $poll['totvotes'] * 100, 2); } $imagewidth = round($percent); eval("\$polloptions .= \"".$templates->get("showthread_poll_resultbit")."\";");
|
else { $percent = number_format($votes / $poll['totvotes'] * 100, 2); } $imagewidth = round($percent); eval("\$polloptions .= \"".$templates->get("showthread_poll_resultbit")."\";");
|
}
| }
|
else { if($poll['multiple'] == 1)
| else { if($poll['multiple'] == 1)
|
Zeile 594 | Zeile 600 |
---|
{ eval("\$edit_poll = \"".$templates->get("showthread_poll_editpoll")."\";"); }
|
{ eval("\$edit_poll = \"".$templates->get("showthread_poll_editpoll")."\";"); }
|
|
|
// Decide what poll status to show depending on the status of the poll and whether or not the user voted already.
|
// 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))
| if(isset($alreadyvoted) || isset($showresults) || isset($nopermission))
|
{ if($alreadyvoted)
|
{ if($alreadyvoted)
|
{
| {
|
$pollstatus = $lang->already_voted;
|
$pollstatus = $lang->already_voted;
|
| $undovote = '';
|
if($mybb->usergroup['canundovotes'] == 1) {
|
if($mybb->usergroup['canundovotes'] == 1) {
|
eval("\$pollstatus .= \"".$templates->get("showthread_poll_undovote")."\";");
| eval("\$undovote = \"".$templates->get("showthread_poll_undovote")."\";");
|
}
|
}
|
| } elseif($nopermission) { $pollstatus = $lang->no_voting_permission;
|
} else { $pollstatus = $lang->poll_closed; }
|
} else { $pollstatus = $lang->poll_closed; }
|
|
|
$lang->total_votes = $lang->sprintf($lang->total_votes, $totalvotes); eval("\$pollbox = \"".$templates->get("showthread_poll_results")."\";"); $plugins->run_hooks("showthread_poll_results");
| $lang->total_votes = $lang->sprintf($lang->total_votes, $totalvotes); eval("\$pollbox = \"".$templates->get("showthread_poll_results")."\";"); $plugins->run_hooks("showthread_poll_results");
|
Zeile 878 | Zeile 890 |
---|
} }
|
} }
|
// Build the threaded post display tree. $query = $db->query("
| // Build the threaded post display tree. $query = $db->query("
|
SELECT p.username, p.uid, p.pid, p.replyto, p.subject, p.dateline FROM ".TABLE_PREFIX."posts p WHERE p.tid='$tid' $visible ORDER BY p.dateline ");
|
SELECT p.username, p.uid, p.pid, p.replyto, p.subject, p.dateline FROM ".TABLE_PREFIX."posts p WHERE p.tid='$tid' $visible ORDER BY p.dateline ");
|
| if(!is_array($postsdone)) { $postsdone = array(); }
|
while($post = $db->fetch_array($query)) { if(!$postsdone[$post['pid']])
|
while($post = $db->fetch_array($query)) { if(!$postsdone[$post['pid']])
|
{
| {
|
if($post['pid'] == $mybb->input['pid'] || ($isfirst && !$mybb->input['pid'])) { $postcounter = count($postsdone);
| if($post['pid'] == $mybb->input['pid'] || ($isfirst && !$mybb->input['pid'])) { $postcounter = count($postsdone);
|
Zeile 922 | Zeile 938 |
---|
}
if(!empty($mybb->input['pid']))
|
}
if(!empty($mybb->input['pid']))
|
{
| {
|
$post = get_post($mybb->input['pid']);
|
$post = get_post($mybb->input['pid']);
|
if(empty($post) || ($post['visible'] == 0 && !is_moderator($post['fid'], 'canviewunapprove')) || ($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted')))
| if(empty($post) || ($post['visible'] == 0 && !is_moderator($post['fid'], 'canviewunapprove')) || ($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted') && $forumpermissions['canviewdeletionnotice'] == 0))
|
{ $footer .= '<script type="text/javascript">$(document).ready(function() { $.jGrowl(\''.$lang->error_invalidpost.'\', {theme: \'jgrowl_error\'}); });</script>'; }
| { $footer .= '<script type="text/javascript">$(document).ready(function() { $.jGrowl(\''.$lang->error_invalidpost.'\', {theme: \'jgrowl_error\'}); });</script>'; }
|
Zeile 940 | Zeile 956 |
---|
if(($result % $perpage) == 0) { $page = $result / $perpage;
|
if(($result % $perpage) == 0) { $page = $result / $perpage;
|
}
| }
|
else { $page = (int)($result / $perpage) + 1;
| else { $page = (int)($result / $perpage) + 1;
|
Zeile 973 | Zeile 989 |
---|
$pages = ceil($pages);
if($mybb->get_input('page') == "last")
|
$pages = ceil($pages);
if($mybb->get_input('page') == "last")
|
{
| {
|
$page = $pages; }
| $page = $pages; }
|
Zeile 1006 | Zeile 1022 |
---|
if($defaultmode != "linear") { if($mybb->get_input('highlight'))
|
if($defaultmode != "linear") { if($mybb->get_input('highlight'))
|
{
| {
|
$threadmode = "&mode=linear";
|
$threadmode = "&mode=linear";
|
}
| }
|
else { $threadmode = "?mode=linear";
| else { $threadmode = "?mode=linear";
|
Zeile 1022 | Zeile 1038 |
---|
if(is_array($mybb->input['highlight'])) { foreach($mybb->input['highlight'] as $highlight_word)
|
if(is_array($mybb->input['highlight'])) { foreach($mybb->input['highlight'] as $highlight_word)
|
{
| {
|
$highlight .= "&highlight[]=".urlencode($highlight_word); }
|
$highlight .= "&highlight[]=".urlencode($highlight_word); }
|
}
| }
|
else { $highlight = "&highlight=".urlencode($mybb->get_input('highlight')); } }
|
else { $highlight = "&highlight=".urlencode($mybb->get_input('highlight')); } }
|
|
|
if($defaultmode != "linear") { $threadmode = "&mode=linear";
| if($defaultmode != "linear") { $threadmode = "&mode=linear";
|
Zeile 1039 | Zeile 1055 |
---|
}
$multipage = multipage($postcount, $perpage, $page, str_replace("{tid}", $tid, THREAD_URL_PAGED.$highlight.$threadmode));
|
}
$multipage = multipage($postcount, $perpage, $page, str_replace("{tid}", $tid, THREAD_URL_PAGED.$highlight.$threadmode));
|
|
|
// Lets get the pids of the posts on this page. $pids = ""; $comma = '';
| // Lets get the pids of the posts on this page. $pids = ""; $comma = '';
|
Zeile 1121 | Zeile 1137 |
---|
WHERE t.fid='{$thread['fid']}' AND t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND t.subject @@ query{$own_perm} ORDER BY t.lastpost DESC OFFSET 0 LIMIT {$mybb->settings['similarlimit']}
|
WHERE t.fid='{$thread['fid']}' AND t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND t.subject @@ query{$own_perm} ORDER BY t.lastpost DESC OFFSET 0 LIMIT {$mybb->settings['similarlimit']}
|
");
| ");
|
break; default: $query = $db->query("
| break; default: $query = $db->query("
|
Zeile 1154 | Zeile 1170 |
---|
$icon = " "; } if(!$similar_thread['username'])
|
$icon = " "; } if(!$similar_thread['username'])
|
{
| {
|
$similar_thread['username'] = $similar_thread['profilelink'] = htmlspecialchars_uni($similar_thread['threadusername']); } else
| $similar_thread['username'] = $similar_thread['profilelink'] = htmlspecialchars_uni($similar_thread['threadusername']); } else
|
Zeile 1171 | Zeile 1187 |
---|
{ $similar_thread['threadprefix'] = $prefix['displaystyle'].' '; }
|
{ $similar_thread['threadprefix'] = $prefix['displaystyle'].' '; }
|
}
| }
|
$similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']); $similar_thread['subject'] = htmlspecialchars_uni($similar_thread['subject']);
| $similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']); $similar_thread['subject'] = htmlspecialchars_uni($similar_thread['subject']);
|
Zeile 1204 | Zeile 1220 |
---|
// Decide whether or not to show quick reply. $quickreply = ''; if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0 && ($thread['uid'] == $mybb->user['uid'] || $forumpermissions['canonlyreplyownthreads'] != 1))
|
// Decide whether or not to show quick reply. $quickreply = ''; if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0 && ($thread['uid'] == $mybb->user['uid'] || $forumpermissions['canonlyreplyownthreads'] != 1))
|
{
| {
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("order_by" => "pid", "order_dir" => "desc", "limit" => 1)); $last_pid = $db->fetch_field($query, "pid");
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("order_by" => "pid", "order_dir" => "desc", "limit" => 1)); $last_pid = $db->fetch_field($query, "pid");
|
|
|
// Show captcha image for guests if enabled $captcha = ''; if($mybb->settings['captchaimage'] && !$mybb->user['uid']) { require_once MYBB_ROOT.'inc/class_captcha.php'; $post_captcha = new captcha(true, "post_captcha");
|
// Show captcha image for guests if enabled $captcha = ''; if($mybb->settings['captchaimage'] && !$mybb->user['uid']) { require_once MYBB_ROOT.'inc/class_captcha.php'; $post_captcha = new captcha(true, "post_captcha");
|
|
|
if($post_captcha->html) { $captcha = $post_captcha->html;
|
if($post_captcha->html) { $captcha = $post_captcha->html;
|
} }
| } }
|
$postoptionschecked = array('signature' => '', 'emailnotify' => ''); if($mybb->user['signature'])
|
$postoptionschecked = array('signature' => '', 'emailnotify' => ''); if($mybb->user['signature'])
|
{
| {
|
$postoptionschecked['signature'] = 'checked="checked"';
|
$postoptionschecked['signature'] = 'checked="checked"';
|
}
| }
|
// Hide signature option if no permission $option_signature = '';
| // Hide signature option if no permission $option_signature = '';
|
Zeile 1237 | Zeile 1253 |
---|
if(isset($mybb->user['emailnotify']) && $mybb->user['emailnotify'] == 1) { $postoptionschecked['emailnotify'] = 'checked="checked"';
|
if(isset($mybb->user['emailnotify']) && $mybb->user['emailnotify'] == 1) { $postoptionschecked['emailnotify'] = 'checked="checked"';
|
}
| }
|
$trow = alt_trow(); if($thread['closed'] == 1) {
| $trow = alt_trow(); if($thread['closed'] == 1) {
|
Zeile 1251 | Zeile 1267 |
---|
if($forumpermissions['modposts'] == 1) { $moderation_text = $lang->moderation_forum_posts;
|
if($forumpermissions['modposts'] == 1) { $moderation_text = $lang->moderation_forum_posts;
|
eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); }
| eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); }
|
if($mybb->user['moderateposts'] == 1) { $moderation_text = $lang->moderation_user_posts; eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); } }
|
if($mybb->user['moderateposts'] == 1) { $moderation_text = $lang->moderation_user_posts; eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); } }
|
$posthash = md5($mybb->user['uid'].random_str());
| $posthash = md5($mybb->user['uid'].random_str()); $expaltext = (in_array("quickreply", $collapse)) ? "[+]" : "[-]";
|
eval("\$quickreply = \"".$templates->get("showthread_quickreply")."\";"); }
| eval("\$quickreply = \"".$templates->get("showthread_quickreply")."\";"); }
|
Zeile 1271 | Zeile 1288 |
---|
if($ismod) { $customthreadtools = $customposttools = $standardthreadtools = $standardposttools = '';
|
if($ismod) { $customthreadtools = $customposttools = $standardthreadtools = $standardposttools = '';
|
|
|
$threadnotesbox = $viewnotes = ''; if(!empty($thread['notes'])) {
| $threadnotesbox = $viewnotes = ''; if(!empty($thread['notes'])) {
|
Zeile 1283 | Zeile 1300 |
---|
$thread['notes'] = my_substr($thread['notes'], 0, 200)."... {$viewnotes}"; }
|
$thread['notes'] = my_substr($thread['notes'], 0, 200)."... {$viewnotes}"; }
|
| $expaltext = (in_array("threadnotes", $collapse)) ? "[+]" : "[-]";
|
eval("\$threadnotesbox = \"".$templates->get("showthread_threadnotes")."\";"); }
if(is_moderator($forum['fid'], "canusecustomtools") && (!empty($forum_stats[-1]['modtools']) || !empty($forum_stats[$forum['fid']]['modtools'])))
|
eval("\$threadnotesbox = \"".$templates->get("showthread_threadnotes")."\";"); }
if(is_moderator($forum['fid'], "canusecustomtools") && (!empty($forum_stats[-1]['modtools']) || !empty($forum_stats[$forum['fid']]['modtools'])))
|
{
| {
|
$gids = explode(',', $mybb->user['additionalgroups']); $gids[] = $mybb->user['usergroup']; $gids = array_filter(array_unique($gids));
| $gids = explode(',', $mybb->user['additionalgroups']); $gids[] = $mybb->user['usergroup']; $gids = array_filter(array_unique($gids));
|
Zeile 1306 | Zeile 1324 |
---|
foreach($gids as $gid) { $gid = (int)$gid;
|
foreach($gids as $gid) { $gid = (int)$gid;
|
$gidswhere .= " OR CONCAT(',',groups,',') LIKE '%,{$gid},%'";
| $gidswhere .= " OR CONCAT(',',`groups`,',') LIKE '%,{$gid},%'";
|
}
|
}
|
$query = $db->simple_select("modtools", 'tid, name, type', "(CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums='') AND (groups='' OR CONCAT(',',groups,',') LIKE '%,-1,%'{$gidswhere})");
| $query = $db->simple_select("modtools", 'tid, name, type', "(CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums='') AND (`groups`='' OR CONCAT(',',`groups`,',') LIKE '%,-1,%'{$gidswhere})");
|
break; }
while($tool = $db->fetch_array($query)) {
|
break; }
while($tool = $db->fetch_array($query)) {
|
| $tool['name'] = htmlspecialchars_uni($tool['name']);
|
if($tool['type'] == 'p') { eval("\$customposttools .= \"".$templates->get("showthread_inlinemoderation_custom_tool")."\";");
| if($tool['type'] == 'p') { eval("\$customposttools .= \"".$templates->get("showthread_inlinemoderation_custom_tool")."\";");
|
Zeile 1435 | Zeile 1454 |
---|
eval("\$moderationoptions = \"".$templates->get("showthread_moderationoptions")."\";"); } }
|
eval("\$moderationoptions = \"".$templates->get("showthread_moderationoptions")."\";"); } }
|
| eval("\$printthread = \"".$templates->get("showthread_printthread")."\";");
|
// Display 'send thread' link if permissions allow $sendthread = ''; if($mybb->usergroup['cansendemail'] == 1) { eval("\$sendthread = \"".$templates->get("showthread_send_thread")."\";");
|
// Display 'send thread' link if permissions allow $sendthread = ''; if($mybb->usergroup['cansendemail'] == 1) { eval("\$sendthread = \"".$templates->get("showthread_send_thread")."\";");
|
}
| }
|
// Display 'add poll' link to thread creator (or mods) if thread doesn't have a poll already $addpoll = '';
| // Display 'add poll' link to thread creator (or mods) if thread doesn't have a poll already $addpoll = '';
|
Zeile 1449 | Zeile 1470 |
---|
if(!$thread['poll'] && ($thread['uid'] == $mybb->user['uid'] || $ismod == true) && $forumpermissions['canpostpolls'] == 1 && $forum['open'] != 0 && $thread['closed'] != 1 && ($ismod == true || $thread['dateline'] > ($time-($mybb->settings['polltimelimit']*60*60)) || $mybb->settings['polltimelimit'] == 0)) { eval("\$addpoll = \"".$templates->get("showthread_add_poll")."\";");
|
if(!$thread['poll'] && ($thread['uid'] == $mybb->user['uid'] || $ismod == true) && $forumpermissions['canpostpolls'] == 1 && $forum['open'] != 0 && $thread['closed'] != 1 && ($ismod == true || $thread['dateline'] > ($time-($mybb->settings['polltimelimit']*60*60)) || $mybb->settings['polltimelimit'] == 0)) { eval("\$addpoll = \"".$templates->get("showthread_add_poll")."\";");
|
}
| }
|
// Subscription status $add_remove_subscription = 'add'; $add_remove_subscription_text = $lang->subscribe_thread;
| // Subscription status $add_remove_subscription = 'add'; $add_remove_subscription_text = $lang->subscribe_thread;
|
Zeile 1539 | Zeile 1560 |
---|
if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1) { $invisonline = $lang->sprintf($lang->users_browsing_forum_invis, $inviscount);
|
if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1) { $invisonline = $lang->sprintf($lang->users_browsing_forum_invis, $inviscount);
|
}
| }
|
$onlinesep = ''; if($invisonline != '' && $onlinemembers)
|
$onlinesep = ''; if($invisonline != '' && $onlinemembers)
|
{
| {
|
$onlinesep = $lang->comma;
|
$onlinesep = $lang->comma;
|
}
| }
|
$onlinesep2 = ''; if($invisonline != '' && $guestcount || $onlinemembers && $guestcount) { $onlinesep2 = $lang->comma; }
|
$onlinesep2 = ''; if($invisonline != '' && $guestcount || $onlinemembers && $guestcount) { $onlinesep2 = $lang->comma; }
|
|
|
eval("\$usersbrowsing = \"".$templates->get("showthread_usersbrowsing")."\";");
|
eval("\$usersbrowsing = \"".$templates->get("showthread_usersbrowsing")."\";");
|
| }
if($thread['visible'] == -1 ) { $thread_deleted = 1;
|
}
$plugins->run_hooks("showthread_end");
| }
$plugins->run_hooks("showthread_end");
|