Hallo, Gast! (Registrieren)

Wir wünschen allen Besuchern frohe Ostern!

Letzte Ankündigung: MyBB 1.8.37 veröffentlicht (04.11.23)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
Gästebeitrag fehlt auf dem Index
#11
Hey Stefan,

Zähler sind einmal aktualisiert. Im Testforum habe ich lediglich das Plugin PHP in Templates, aber auch das nun einmal deaktiviert. Scheint aber hier auch nicht die Lösung zu sein, denn er zeigt weiterhin NIE an, auch bei einem erneuten Gastbeitrag. Es bleibt dabei, das er es erst anzeigt, wenn der Gast die Zeile Name selber ausfüllt. Egal was dort dann auch steht, selbst wenn es nur ein Komma ist was er dort reinsetzt.
Zitieren
#12
Was wird denn im Beitrag selbst angezeigt (showtread.php)?
Wird da "Gast" angezeigt?
Zitieren
#13
nein.. wenn man auf Antwort klickt ist die Zeile leer. Wird also erst nach Beitragserstellung automatisch mit Gast befüllt. Warte, hier einmal die
showthread.php

Code:
<?php
/**
* MyBB 1.8
* Copyright 2014 MyBB Group, All Rights Reserved
*
* Website: http://www.mybb.com
* License: http://www.mybb.com/about/license
*
*/

define("IN_MYBB", 1);
define('THIS_SCRIPT', 'showthread.php');

$templatelist = "showthread,postbit,postbit_author_user,postbit_author_guest,showthread_newthread,showthread_newreply,showthread_newreply_closed,postbit_avatar,postbit_find,postbit_pm,postbit_www,postbit_email,postbit_edit,postbit_quote,postbit_report";
$templatelist .= ",multipage,multipage_breadcrumb,multipage_end,multipage_jump_page,multipage_nextpage,multipage_page,multipage_page_current,multipage_page_link_current,multipage_prevpage,multipage_start,showthread_inlinemoderation_softdelete,showthread_poll_editpoll";
$templatelist .= ",postbit_editedby,showthread_similarthreads,showthread_similarthreads_bit,postbit_iplogged_show,postbit_iplogged_hiden,postbit_profilefield,showthread_quickreply,showthread_printthread,showthread_add_poll,showthread_send_thread,showthread_inlinemoderation_restore";
$templatelist .= ",forumjump_advanced,forumjump_special,forumjump_bit,postbit_attachments,postbit_attachments_attachment,postbit_attachments_thumbnails,postbit_attachments_images_image,postbit_attachments_images,showthread_quickreply_options_stick,postbit_status";
$templatelist .= ",postbit_inlinecheck,showthread_inlinemoderation,postbit_attachments_thumbnails_thumbnail,postbit_ignored,postbit_multiquote,showthread_moderationoptions_custom_tool,showthread_moderationoptions_custom,showthread_inlinemoderation_custom_tool";
$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_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 .= ",postbit_editreason,postbit_quickdelete,showthread_threadnotes_viewnotes,showthread_threadedbox,showthread_poll_resultbit,showthread_poll_results,showthread_threadnotes,showthread_classic_header,showthread_poll_undovote,postbit_groupimage";

require_once "./global.php";
require_once MYBB_ROOT."inc/functions_post.php";
require_once MYBB_ROOT."inc/functions_indicators.php";
require_once MYBB_ROOT."inc/class_parser.php";
$parser = new postParser;

// Load global language phrases
$lang->load("showthread");

// If there is no tid but a pid, trick the system into thinking there was a tid anyway.
if(!empty($mybb->input['pid']) && !isset($mybb->input['tid']))
{
    // see if we already have the post information
    if(isset($style) && $style['pid'] == $mybb->get_input('pid', MyBB::INPUT_INT) && $style['tid'])
    {
        $mybb->input['tid'] = $style['tid'];
        unset($style['tid']); // stop the thread caching code from being tricked
    }
    else
    {
        $options = array(
            "limit" => 1
        );
        $query = $db->simple_select("posts", "fid,tid,visible", "pid=".$mybb->get_input('pid', MyBB::INPUT_INT), $options);
        $post = $db->fetch_array($query);

        if(empty($post) || ($post['visible'] == 0 && !is_moderator($post['fid'], 'canviewunapprove')) || ($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted')))
        {
            // post does not exist --> show corresponding error
            error($lang->error_invalidpost);
        }

        $mybb->input['tid'] = $post['tid'];
    }
}

// Get the thread details from the database.
$thread = get_thread($mybb->get_input('tid', MyBB::INPUT_INT));

if(!$thread || substr($thread['closed'], 0, 6) == "moved|")
{
    error($lang->error_invalidthread);
}

// Get thread prefix if there is one.
$thread['threadprefix'] = '';
$thread['displayprefix'] = '';
if($thread['prefix'] != 0)
{
    $threadprefix = build_prefixes($thread['prefix']);

    if(!empty($threadprefix['prefix']))
    {
        $thread['threadprefix'] = htmlspecialchars_uni($threadprefix['prefix']).'&nbsp;';
        $thread['displayprefix'] = $threadprefix['displaystyle'].'&nbsp;';
    }
}

$reply_subject = $parser->parse_badwords($thread['subject']);
$thread['subject'] = htmlspecialchars_uni($reply_subject);
// Subject too long? Shorten it to avoid error message
if(my_strlen($reply_subject) > 85)
{
    $reply_subject = my_substr($reply_subject, 0, 82).'...';
}
$reply_subject = htmlspecialchars_uni($reply_subject);
$tid = $thread['tid'];
$fid = $thread['fid'];

if(!$thread['username'])
{
    $thread['username'] = $lang->guest;
}
$thread['username'] = htmlspecialchars_uni($thread['username']);

$forumpermissions = forum_permissions($thread['fid']);

// Set here to fetch only approved/deleted posts (and then below for a moderator we change this).
if($forumpermissions['canviewdeletionnotice'] != 0)
{
    $visibleonly = " AND visible IN (-1,1)";
    $visibleonly2 = "AND p.visible IN (-1,1) AND t.visible IN (-1,1)";
}
else
{
    $visibleonly = " AND visible=1";
    $visibleonly2 = "AND p.visible=1 AND t.visible=1";
}

// Is the currently logged in user a moderator of this forum?
if(is_moderator($fid))
{
    $ismod = true;
    if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true)
    {
        if(is_moderator($fid, "canviewunapprove") == true && is_moderator($fid, "canviewdeleted") == false)
        {
            $visibleonly = " AND visible IN (0,1)";
            $visibleonly2 = "AND p.visible IN (0,1) AND t.visible IN (0,1)";
        }
        elseif(is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == false)
        {
            $visibleonly = " AND visible IN (-1,1)";
            $visibleonly2 = "AND p.visible IN (-1,1) AND t.visible IN (-1,1)";
        }
        else
        {
            $visibleonly = " AND visible IN (-1,0,1)";
            $visibleonly2 = "AND p.visible IN (-1,0,1) AND t.visible IN (-1,0,1)";
        }
    }
}
else
{
    $ismod = false;
}

// Make sure we are looking at a real thread here.
if(($thread['visible'] != 1 && $ismod == false) || ($thread['visible'] == 0 && !is_moderator($fid, "canviewunapprove")) || ($thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted")))
{
    // Allow viewing own unapproved thread
    if (!($mybb->user['uid'] && $mybb->settings['showownunapproved'] && $thread['visible'] == 0 && ($thread['uid'] == $mybb->user['uid'])))
    {
        error($lang->error_invalidthread);
    }
}

// Does the user have permission to view this thread?
if($forumpermissions['canview'] != 1 || $forumpermissions['canviewthreads'] != 1)
{
    error_no_permission();
}

if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1 && $thread['uid'] != $mybb->user['uid'])
{
    error_no_permission();
}

$archive_url = build_archive_link("thread", $tid);

// Does the thread belong to a valid forum?
$forum = get_forum($fid);
if(!$forum || $forum['type'] != "f")
{
    error($lang->error_invalidforum);
}

$threadnoteslink = '';
if(is_moderator($fid, "canmanagethreads") && !empty($thread['notes']))
{
    eval('$threadnoteslink = "'.$templates->get('showthread_threadnoteslink').'";');
}

// Check if this forum is password protected and we have a valid password
check_forum_password($forum['fid']);

// If there is no specific action, we must be looking at the thread.
if(!$mybb->get_input('action'))
{
    $mybb->input['action'] = "thread";
}

// Jump to the unread posts.
if($mybb->input['action'] == "newpost")
{
    // First, figure out what time the thread or forum were last read
    $query = $db->simple_select("threadsread", "dateline", "uid='{$mybb->user['uid']}' AND tid='{$thread['tid']}'");
    $thread_read = $db->fetch_field($query, "dateline");

    if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'])
    {
        $query = $db->simple_select("forumsread", "dateline", "fid='{$fid}' AND uid='{$mybb->user['uid']}'");
        $forum_read = $db->fetch_field($query, "dateline");

        $read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
        if($forum_read == 0 || $forum_read < $read_cutoff)
        {
            $forum_read = $read_cutoff;
        }
    }
    else
    {
        $forum_read = (int)my_get_array_cookie("forumread", $fid);
    }

    if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read)
    {
        $cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
        if($thread['lastpost'] > $cutoff)
        {
            if($thread_read)
            {
                $lastread = $thread_read;
            }
            else
            {
                // Set $lastread to zero to make sure 'lastpost' is invoked in the last IF
                $lastread = 0;
            }
        }
    }

    if(!$lastread)
    {
        $readcookie = $threadread = (int)my_get_array_cookie("threadread", $thread['tid']);
        if($readcookie > $forum_read)
        {
            $lastread = $readcookie;
        }
        else
        {
            $lastread = $forum_read;
        }
    }

   if($cutoff && $lastread < $cutoff)
   {
          $lastread = $cutoff;
   }

    // Next, find the proper pid to link to.
    $options = array(
        "limit_start" => 0,
        "limit" => 1,
        "order_by" => "dateline",
        "order_dir" => "asc"
    );

    $lastread = (int)$lastread;
    $query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline > '{$lastread}' {$visibleonly}", $options);
    $newpost = $db->fetch_array($query);

    if($newpost['pid'] && $lastread)
    {
        $highlight = '';
        if($mybb->get_input('highlight'))
        {
            $string = "&";
            if($mybb->seo_support == true)
            {
                $string = "?";
            }

            $highlight = $string."highlight=".$mybb->get_input('highlight');
        }

        header("Location: ".htmlspecialchars_decode(get_post_link($newpost['pid'], $tid)).$highlight."#pid{$newpost['pid']}");
    }
    else
    {
        // show them to the last post
        $mybb->input['action'] = "lastpost";
    }
}

// Jump to the last post.
if($mybb->input['action'] == "lastpost")
{
    if(my_strpos($thread['closed'], "moved|"))
    {
        $query = $db->query("
            SELECT p.pid
            FROM ".TABLE_PREFIX."posts p
            LEFT JOIN ".TABLE_PREFIX."threads t ON(p.tid=t.tid)
            WHERE t.fid='".$thread['fid']."' AND t.closed NOT LIKE 'moved|%' {$visibleonly2}
            ORDER BY p.dateline DESC
            LIMIT 1
        ");
        $pid = $db->fetch_field($query, "pid");
    }
    else
    {
        $options = array(
            'order_by' => 'dateline',
            'order_dir' => 'desc',
            'limit_start' => 0,
            'limit' => 1
        );
        $query = $db->simple_select('posts', 'pid', "tid={$tid} {$visibleonly}", $options);
        $pid = $db->fetch_field($query, "pid");
    }
    header("Location: ".htmlspecialchars_decode(get_post_link($pid, $tid))."#pid{$pid}");
    exit;
}

// Jump to the next newest posts.
if($mybb->input['action'] == "nextnewest")
{
    $options = array(
        "limit_start" => 0,
        "limit" => 1,
        "order_by" => "lastpost"
    );
    $query = $db->simple_select('threads', '*', "fid={$thread['fid']} AND lastpost > {$thread['lastpost']} {$visibleonly} AND closed NOT LIKE 'moved|%'", $options);
    $nextthread = $db->fetch_array($query);

    // Are there actually next newest posts?
    if(!$nextthread['tid'])
    {
        error($lang->error_nonextnewest);
    }
    $options = array(
        "limit_start" => 0,
        "limit" => 1,
        "order_by" => "dateline",
        "order_dir" => "desc"
    );
    $query = $db->simple_select('posts', 'pid', "tid='{$nextthread['tid']}'", $options);

    // Redirect to the proper page.
    $pid = $db->fetch_field($query, "pid");
    header("Location: ".htmlspecialchars_decode(get_post_link($pid, $nextthread['tid']))."#pid{$pid}");
    exit;
}

// Jump to the next oldest posts.
if($mybb->input['action'] == "nextoldest")
{
    $options = array(
        "limit" => 1,
        "limit_start" => 0,
        "order_by" => "lastpost",
        "order_dir" => "desc"
    );
    $query = $db->simple_select("threads", "*", "fid=".$thread['fid']." AND lastpost < ".$thread['lastpost']." {$visibleonly} AND closed NOT LIKE 'moved|%'", $options);
    $nextthread = $db->fetch_array($query);

    // Are there actually next oldest posts?
    if(!$nextthread['tid'])
    {
        error($lang->error_nonextoldest);
    }
    $options = array(
        "limit_start" => 0,
        "limit" => 1,
        "order_by" => "dateline",
        "order_dir" => "desc"
    );
    $query = $db->simple_select("posts", "pid", "tid='".$nextthread['tid']."'", $options);

    // Redirect to the proper page.
    $pid = $db->fetch_field($query, "pid");
    header("Location: ".htmlspecialchars_decode(get_post_link($pid, $nextthread['tid']))."#pid{$pid}");
    exit;
}

$pid = $mybb->input['pid'] = $mybb->get_input('pid', MyBB::INPUT_INT);

// Forumdisplay cache
$forum_stats = $cache->read("forumsdisplay");

$breadcrumb_multipage = array();
if($mybb->settings['showforumpagesbreadcrumb'])
{
    // How many pages are there?
    if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1)
    {
        $mybb->settings['threadsperpage'] = 20;
    }

    $query = $db->simple_select("forums", "threads, unapprovedthreads, deletedthreads", "fid = '{$fid}'", array('limit' => 1));
    $forum_threads = $db->fetch_array($query);
    $threadcount = $forum_threads['threads'];


    if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true)
    {
        if(is_moderator($fid, "canviewdeleted") == true)
        {
            $threadcount += $forum_threads['deletedthreads'];
        }
        if(is_moderator($fid, "canviewunapprove") == true)
        {
            $threadcount += $forum_threads['unapprovedthreads'];
        }
    }
    elseif($forumpermissions['canviewdeletionnotice'] != 0)
    {
        $threadcount += $forum_threads['deletedthreads'];
    }

    // Limit to only our own threads
    $uid_only = '';
    if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1)
    {
        $uid_only = " AND uid = '".$mybb->user['uid']."'";

        $query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $visibleonly $uid_only", array('limit' => 1));
        $threadcount = $db->fetch_field($query, "threads");
    }

    // If we have 0 threads double check there aren't any "moved" threads
    if($threadcount == 0)
    {
        $query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $visibleonly $uid_only", array('limit' => 1));
        $threadcount = $db->fetch_field($query, "threads");
    }

    $stickybit = " OR sticky=1";
    if($thread['sticky'] == 1)
    {
        $stickybit = " AND sticky=1";
    }

    // Figure out what page the thread is actually on
    switch($db->type)
    {
        case "pgsql":
            $query = $db->query("
                SELECT COUNT(tid) as threads
                FROM ".TABLE_PREFIX."threads
                WHERE fid = '$fid' AND (lastpost >= '".(int)$thread['lastpost']."'{$stickybit}) {$visibleonly} {$uid_only}
                GROUP BY lastpost
                ORDER BY lastpost DESC
            ");
            break;
        default:
            $query = $db->simple_select("threads", "COUNT(tid) as threads", "fid = '$fid' AND (lastpost >= '".(int)$thread['lastpost']."'{$stickybit}) {$visibleonly} {$uid_only}", array('order_by' => 'lastpost', 'order_dir' => 'desc'));
    }

    $thread_position = $db->fetch_field($query, "threads");
    $thread_page = ceil(($thread_position/$mybb->settings['threadsperpage']));

    $breadcrumb_multipage = array(
        "num_threads" => $threadcount,
        "current_page" => $thread_page
    );
}

// Build the navigation.
build_forum_breadcrumb($fid, $breadcrumb_multipage);
add_breadcrumb($thread['displayprefix'].$thread['subject'], get_thread_link($thread['tid']));

$plugins->run_hooks("showthread_start");

// Show the entire thread (taking into account pagination).
if($mybb->input['action'] == "thread")
{
    // 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);
    }

    // Does this thread have a poll?
    if($thread['poll'])
    {
        $options = array(
            "limit" => 1
        );
        $query = $db->simple_select("polls", "*", "pid='".$thread['poll']."'", $options);
        $poll = $db->fetch_array($query);
        $poll['timeout'] = $poll['timeout']*60*60*24;
        $expiretime = $poll['dateline'] + $poll['timeout'];
        $now = TIME_NOW;

        // If the poll or the thread is closed or if the poll is expired, show the results.
        if($poll['closed'] == 1 || $thread['closed'] == 1 || ($expiretime < $now && $poll['timeout'] > 0) || $forumpermissions['canvotepolls'] != 1)
        {
            $showresults = 1;
        }

        if($forumpermissions['canvotepolls'] != 1)
        {
            $nopermission = 1;
        }

        // Check if the user has voted before...
        if($mybb->user['uid'])
        {
            $user_check = "uid='{$mybb->user['uid']}'";
        }
        else
        {
            $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;

        for($i = 1; $i <= $poll['numoptions']; ++$i)
        {
            $poll['totvotes'] = $poll['totvotes'] + $votesarray[$i-1];
        }

        // Loop through the poll options.
        for($i = 1; $i <= $poll['numoptions']; ++$i)
        {
            // Set up the parser options.
            $parser_options = array(
                "allow_html" => $forum['allowhtml'],
                "allow_mycode" => $forum['allowmycode'],
                "allow_smilies" => $forum['allowsmilies'],
                "allow_imgcode" => $forum['allowimgcode'],
                "allow_videocode" => $forum['allowvideocode'],
                "filter_badwords" => 1
            );

            if($mybb->user['showimages'] != 1 && $mybb->user['uid'] != 0 || $mybb->settings['guestimages'] != 1 && $mybb->user['uid'] == 0)
            {
                $parser_options['allow_imgcode'] = 0;
            }

            if($mybb->user['showvideos'] != 1 && $mybb->user['uid'] != 0 || $mybb->settings['guestvideos'] != 1 && $mybb->user['uid'] == 0)
            {
                $parser_options['allow_videocode'] = 0;
            }

            $option = $parser->parse_message($optionsarray[$i-1], $parser_options);
            $votes = $votesarray[$i-1];
            $totalvotes += $votes;
            $number = $i;

            // Mark the option the user voted for.
            if(!empty($votedfor[$number]))
            {
                $optionbg = "trow2";
                $votestar = "*";
            }
            else
            {
                $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")
                {
                    $percent = "0";
                }
                else
                {
                    $percent = number_format($votes / $poll['totvotes'] * 100, 2);
                }
                $imagewidth = round($percent);
                eval("\$polloptions .= \"".$templates->get("showthread_poll_resultbit")."\";");
            }
            else
            {
                if($poll['multiple'] == 1)
                {
                    eval("\$polloptions .= \"".$templates->get("showthread_poll_option_multiple")."\";");
                }
                else
                {
                    eval("\$polloptions .= \"".$templates->get("showthread_poll_option")."\";");
                }
            }
        }

        // If there are any votes at all, all votes together will be 100%; if there are no votes, all votes together will be 0%.
        if($poll['totvotes'])
        {
            $totpercent = "100%";
        }
        else
        {
            $totpercent = "0%";
        }

        // Check if user is allowed to edit posts; if so, show "edit poll" link.
        $edit_poll = '';
        if(is_moderator($fid, 'canmanagepolls'))
        {
            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.
        if(isset($alreadyvoted) || isset($showresults) || isset($nopermission))
        {
            if($alreadyvoted)
            {
                $pollstatus = $lang->already_voted;

                $undovote = '';
                if($mybb->usergroup['canundovotes'] == 1)
                {
                    eval("\$undovote = \"".$templates->get("showthread_poll_undovote")."\";");
                }
            }
            elseif($nopermission)
            {
                $pollstatus = $lang->no_voting_permission;
            }
            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");
        }
        else
        {
            $closeon = '&nbsp;';
            if($poll['timeout'] != 0)
            {
                $closeon = $lang->sprintf($lang->poll_closes, my_date($mybb->settings['dateformat'], $expiretime));
            }

            $publicnote = '&nbsp;';
            if($poll['public'] == 1)
            {
                $publicnote = $lang->public_note;
            }

            eval("\$pollbox = \"".$templates->get("showthread_poll")."\";");
            $plugins->run_hooks("showthread_poll");
        }

    }
    else
    {
        $pollbox = "";
    }

    // Create the forum jump dropdown box.
    if($mybb->settings['enableforumjump'] != 0)
    {
        $forumjump = build_forum_jump("", $fid, 1);
    }

    // Fetch some links
    $next_oldest_link = get_thread_link($tid, 0, "nextoldest");
    $next_newest_link = get_thread_link($tid, 0, "nextnewest");

    // Mark this thread as read
    mark_thread_read($tid, $fid);

    // If the forum is not open, show closed newreply button unless the user is a moderator of this forum.
    $newthread = $newreply = '';
    if($forum['open'] != 0 && $forum['type'] == "f")
    {
        if($forumpermissions['canpostthreads'] != 0 && $mybb->user['suspendposting'] != 1)
        {
            eval("\$newthread = \"".$templates->get("showthread_newthread")."\";");
        }

        // Show the appropriate reply button if this thread is open or closed
        if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && ($thread['uid'] == $mybb->user['uid'] || $forumpermissions['canonlyreplyownthreads'] != 1))
        {
            eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
        }
        elseif($thread['closed'] == 1)
        {
            eval("\$newreply = \"".$templates->get("showthread_newreply_closed")."\";");
        }
    }

    // Create the admin tools dropdown box.
    if($ismod == true)
    {
        $closelinkch = $stickch = '';

        if($thread['closed'] == 1)
        {
            $closelinkch = ' checked="checked"';
        }

        if($thread['sticky'])
        {
            $stickch = ' checked="checked"';
        }

        if(is_moderator($thread['fid'], "canopenclosethreads"))
        {
            eval("\$closeoption .= \"".$templates->get("showthread_quickreply_options_close")."\";");
        }

        if(is_moderator($thread['fid'], "canstickunstickthreads"))
        {
            eval("\$closeoption .= \"".$templates->get("showthread_quickreply_options_stick")."\";");
        }

        $inlinecount = "0";
        $inlinecookie = "inlinemod_thread".$tid;

        $plugins->run_hooks("showthread_ismod");
    }
    else
    {
        $modoptions = "&nbsp;";
        $inlinemod = $closeoption = '';
    }

    // Increment the thread view.
    if($mybb->settings['delayedthreadviews'] == 1)
    {
        $db->shutdown_query("INSERT INTO ".TABLE_PREFIX."threadviews (tid) VALUES('{$tid}')");
    }
    else
    {
        $db->shutdown_query("UPDATE ".TABLE_PREFIX."threads SET views=views+1 WHERE tid='{$tid}'");
    }
    ++$thread['views'];

    // Work out the thread rating for this thread.
    $rating = '';
    if($mybb->settings['allowthreadratings'] != 0 && $forum['allowtratings'] != 0)
    {
        $rated = 0;
        $lang->load("ratethread");
        if($thread['numratings'] <= 0)
        {
            $thread['width'] = 0;
            $thread['averagerating'] = 0;
            $thread['numratings'] = 0;
        }
        else
        {
            $thread['averagerating'] = (float)round($thread['totalratings']/$thread['numratings'], 2);
            $thread['width'] = (int)round($thread['averagerating'])*20;
            $thread['numratings'] = (int)$thread['numratings'];
        }

        if($thread['numratings'])
        {
            // At least >someone< has rated this thread, was it me?
            // Check if we have already voted on this thread - it won't show hover effect then.
            $query = $db->simple_select("threadratings", "uid", "tid='{$tid}' AND uid='{$mybb->user['uid']}'");
            $rated = $db->fetch_field($query, 'uid');
        }

        $not_rated = '';
        if(!$rated)
        {
            $not_rated = ' star_rating_notrated';
        }

        $ratingvotesav = $lang->sprintf($lang->rating_average, $thread['numratings'], $thread['averagerating']);
        eval("\$ratethread = \"".$templates->get("showthread_ratethread")."\";");
    }
    // Work out if we are showing unapproved posts as well (if the user is a moderator etc.)
    if($ismod && is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == false)
    {
        $visible = "AND p.visible IN (-1,1)";
    }
    elseif($ismod && is_moderator($fid, "canviewdeleted") == false && is_moderator($fid, "canviewunapprove") == true)
    {
        $visible = "AND p.visible IN (0,1)";
    }
    elseif($ismod && is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == true)
    {
        $visible = "AND p.visible IN (-1,0,1)";
    }
    elseif($forumpermissions['canviewdeletionnotice'] != 0 && $ismod == false)
    {
        $visible = "AND p.visible IN (-1,1)";
    }
    else
    {
        $visible = "AND p.visible='1'";
    }

    // Can this user perform searches? If so, we can show them the "Search thread" form
    if($forumpermissions['cansearch'] != 0)
    {
        eval("\$search_thread = \"".$templates->get("showthread_search")."\";");
    }

    // Fetch the ignore list for the current user if they have one
    $ignored_users = array();
    if($mybb->user['uid'] > 0 && $mybb->user['ignorelist'] != "")
    {
        $ignore_list = explode(',', $mybb->user['ignorelist']);
        foreach($ignore_list as $uid)
        {
            $ignored_users[$uid] = 1;
        }
    }

    // Fetch profile fields to display on postbit
    $pfcache = $cache->read('profilefields');

    if(is_array($pfcache))
    {
        foreach($pfcache as $profilefield)
        {
            if($profilefield['postbit'] != 1)
            {
                continue;
            }

            $profile_fields[$profilefield['fid']] = $profilefield;
        }
    }

    // Which thread mode is our user using by default?
    if(!empty($mybb->user['threadmode']))
    {
        $defaultmode = $mybb->user['threadmode'];
    }
    else if($mybb->settings['threadusenetstyle'] == 1)
    {
        $defaultmode = 'threaded';
    }
    else
    {
        $defaultmode = 'linear';
    }

    // If mode is unset, set the default mode
    if(!isset($mybb->input['mode']))
    {
        $mybb->input['mode'] = $defaultmode;
    }

    // Threaded or linear display?
    $threadexbox = '';
    if($mybb->get_input('mode') == 'threaded')
    {
        $isfirst = 1;

        // Are we linked to a specific pid?
        if($mybb->input['pid'])
        {
            $where = "AND p.pid='".$mybb->input['pid']."'";
        }
        else
        {
            $where = " ORDER BY dateline LIMIT 0, 1";
        }
        $query = $db->query("
            SELECT u.*, u.username AS userusername, p.*, f.*, eu.username AS editusername
            FROM ".TABLE_PREFIX."posts p
            LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
            LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)
            LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid)
            WHERE p.tid='$tid' $visible $where
        ");
        $showpost = $db->fetch_array($query);

        // Choose what pid to display.
        if(!$mybb->input['pid'])
        {
            $mybb->input['pid'] = $showpost['pid'];
        }

        // Is there actually a pid to display?
        if(!$showpost['pid'])
        {
            error($lang->error_invalidpost);
        }

        $attachcache = array();
        if($mybb->settings['enableattachments'] == 1 && $thread['attachmentcount'] > 0 || is_moderator($fid, 'caneditposts'))
        {
            // Get the attachments for this post.
            $query = $db->simple_select("attachments", "*", "pid=".$mybb->input['pid']);
            while($attachment = $db->fetch_array($query))
            {
                $attachcache[$attachment['pid']][$attachment['aid']] = $attachment;
            }
        }

        // 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
        ");
        if(!is_array($postsdone))
        {
            $postsdone = array();
        }
        while($post = $db->fetch_array($query))
        {
            if(!$postsdone[$post['pid']])
            {
                if($post['pid'] == $mybb->input['pid'] || ($isfirst && !$mybb->input['pid']))
                {
                    $postcounter = count($postsdone);
                    $isfirst = 0;
                }
                $tree[$post['replyto']][$post['pid']] = $post;
                $postsdone[$post['pid']] = 1;
            }
        }

        $threadedbits = buildtree();
        $posts = build_postbit($showpost);
        eval("\$threadexbox = \"".$templates->get("showthread_threadedbox")."\";");
        $plugins->run_hooks("showthread_threaded");
    }
    else // Linear display
    {
        $threadexbox = '';
        if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1)
        {
            $mybb->settings['postsperpage'] = 20;
        }

        // Figure out if we need to display multiple pages.
        $page = 1;
        $perpage = $mybb->settings['postsperpage'];
        if($mybb->get_input('page', MyBB::INPUT_INT) && $mybb->get_input('page') != "last")
        {
            $page = $mybb->get_input('page', MyBB::INPUT_INT);
        }

        if(!empty($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') && $forumpermissions['canviewdeletionnotice'] == 0))
            {
                $footer .= '<script type="text/javascript">$(function() { $.jGrowl(\''.$lang->error_invalidpost.'\', {theme: \'jgrowl_error\'}); });</script>';
            }
            else
            {
                $query = $db->query("
                    SELECT COUNT(p.dateline) AS count FROM ".TABLE_PREFIX."posts p
                    WHERE p.tid = '{$tid}'
                    AND p.dateline <= '{$post['dateline']}'
                    {$visible}
                ");
                $result = $db->fetch_field($query, "count");
                if(($result % $perpage) == 0)
                {
                    $page = $result / $perpage;
                }
                else
                {
                    $page = (int)($result / $perpage) + 1;
                }
            }
        }

        // Recount replies if user is a moderator or can see the deletion notice to take into account unapproved/deleted posts.
        if($ismod || $forumpermissions['canviewdeletionnotice'] != 0)
        {
            $query = $db->simple_select("posts p", "COUNT(*) AS replies", "p.tid='$tid' $visible");
            $cached_replies = $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts'];
            $thread['replies'] = $db->fetch_field($query, 'replies')-1;

            // The counters are wrong? Rebuild them
            // This doesn't cover all cases however it is a good addition to the manual rebuild function
            if($thread['replies'] != $cached_replies)
            {
                require_once MYBB_ROOT."/inc/functions_rebuild.php";
                rebuild_thread_counters($thread['tid']);
            }
        }
        elseif($forumpermissions['canviewdeletionnotice'] != 0)
        {
            $thread['replies'] += $thread['deletedposts'];
        }

        $postcount = (int)$thread['replies']+1;
        $pages = $postcount / $perpage;
        $pages = ceil($pages);

        if($mybb->get_input('page') == "last")
        {
            $page = $pages;
        }

        if($page > $pages || $page <= 0)
        {
            $page = 1;
        }

        if($page)
        {
            $start = ($page-1) * $perpage;
        }
        else
        {
            $start = 0;
            $page = 1;
        }
        $upper = $start+$perpage;

        // Work out if we have terms to highlight
        $highlight = "";
        $threadmode = "";
        if($mybb->seo_support == true)
        {
            if($mybb->get_input('highlight'))
            {
                $highlight = "?highlight=".urlencode($mybb->get_input('highlight'));
            }

            if($defaultmode != "linear")
            {
                if($mybb->get_input('highlight'))
                {
                    $threadmode = "&amp;mode=linear";
                }
                else
                {
                    $threadmode = "?mode=linear";
                }
            }
        }
        else
        {
            if(!empty($mybb->input['highlight']))
            {
                if(is_array($mybb->input['highlight']))
                {
                    foreach($mybb->input['highlight'] as $highlight_word)
                    {
                        $highlight .= "&amp;highlight[]=".urlencode($highlight_word);
                    }
                }
                else
                {
                    $highlight = "&amp;highlight=".urlencode($mybb->get_input('highlight'));
                }
            }

            if($defaultmode != "linear")
            {
                $threadmode = "&amp;mode=linear";
            }
        }

        $multipage = multipage($postcount, $perpage, $page, str_replace("{tid}", $tid, THREAD_URL_PAGED.$highlight.$threadmode));
        
        // Allow originator to see own unapproved posts
        if($mybb->user['uid'] && $mybb->settings['showownunapproved'])
        {
            $visible .= " OR (p.tid='$tid' AND p.visible='0' AND p.uid=".$mybb->user['uid'].")";
        }

        // Lets get the pids of the posts on this page.
        $pids = "";
        $comma = '';
        $query = $db->simple_select("posts p", "p.pid", "p.tid='$tid' $visible", array('order_by' => 'p.dateline', 'limit_start' => $start, 'limit' => $perpage));
        while($getid = $db->fetch_array($query))
        {
            // Set the ID of the first post on page to $pid if it doesn't hold any value
            // to allow this value to be used for Thread Mode/Linear Mode links
            // and ensure the user lands on the correct page after changing view mode
            if(empty($pid))
            {
                $pid = $getid['pid'];
            }
            // Gather a comma separated list of post IDs
            $pids .= "$comma'{$getid['pid']}'";
            $comma = ",";
        }
        if($pids)
        {
            $pids = "pid IN($pids)";

            $attachcache = array();
            if($mybb->settings['enableattachments'] == 1 && $thread['attachmentcount'] > 0 || is_moderator($fid, 'caneditposts'))
            {
                // Now lets fetch all of the attachments for these posts.
                $query = $db->simple_select("attachments", "*", $pids);
                while($attachment = $db->fetch_array($query))
                {
                    $attachcache[$attachment['pid']][$attachment['aid']] = $attachment;
                }
            }
        }
        else
        {
            // If there are no pid's the thread is probably awaiting approval.
            error($lang->error_invalidthread);
        }

        // Get the actual posts from the database here.
        $posts = '';
        $query = $db->query("
            SELECT u.*, u.username AS userusername, p.*, f.*, eu.username AS editusername
            FROM ".TABLE_PREFIX."posts p
            LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
            LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)
            LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid)
            WHERE $pids
            ORDER BY p.dateline
        ");
        while($post = $db->fetch_array($query))
        {
            if($thread['firstpost'] == $post['pid'] && $thread['visible'] == 0)
            {
                $post['visible'] = 0;
            }
            $posts .= build_postbit($post);
            $post = '';
        }
        $plugins->run_hooks("showthread_linear");
    }

    // Show the similar threads table if wanted.
    $similarthreads = '';
    if($mybb->settings['showsimilarthreads'] != 0)
    {
        $own_perm = '';
        if($forumpermissions['canonlyviewownthreads'] == 1)
        {
            $own_perm = " AND t.uid={$mybb->user['uid']}";
        }

        switch($db->type)
        {
            case "pgsql":
                $query = $db->query("
                    SELECT t.*, t.username AS threadusername, u.username
                    FROM ".TABLE_PREFIX."threads t
                    LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid), plainto_tsquery ('".$db->escape_string($thread['subject'])."') AS query
                    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("
                    SELECT t.*, t.username AS threadusername, u.username, MATCH (t.subject) AGAINST ('".$db->escape_string($thread['subject'])."') AS relevance
                    FROM ".TABLE_PREFIX."threads t
                    LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
                    WHERE t.fid='{$thread['fid']}' AND t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%'{$own_perm} AND MATCH (t.subject) AGAINST ('".$db->escape_string($thread['subject'])."') >= '{$mybb->settings['similarityrating']}'
                    ORDER BY t.lastpost DESC
                    LIMIT 0, {$mybb->settings['similarlimit']}
                ");
        }

        $count = 0;
        $similarthreadbits = '';
        $icon_cache = $cache->read("posticons");
        while($similar_thread = $db->fetch_array($query))
        {
            ++$count;
            $trow = alt_trow();
            if($similar_thread['icon'] > 0 && $icon_cache[$similar_thread['icon']])
            {
                $icon = $icon_cache[$similar_thread['icon']];
                $icon['path'] = str_replace("{theme}", $theme['imgdir'], $icon['path']);
                $icon['path'] = htmlspecialchars_uni($icon['path']);
                $icon['name'] = htmlspecialchars_uni($icon['name']);
                eval("\$icon = \"".$templates->get("forumdisplay_thread_icon")."\";");
            }
            else
            {
                $icon = "&nbsp;";
            }
            if(!$similar_thread['username'])
            {
                $similar_thread['username'] = $similar_thread['profilelink'] = htmlspecialchars_uni($similar_thread['threadusername']);
            }
            else
            {
                $similar_thread['username'] = htmlspecialchars_uni($similar_thread['username']);
                $similar_thread['profilelink'] = build_profile_link($similar_thread['username'], $similar_thread['uid']);
            }

            // If this thread has a prefix, insert a space between prefix and subject
            if($similar_thread['prefix'] != 0)
            {
                $prefix = build_prefixes($similar_thread['prefix']);
                if(!empty($prefix))
                {
                    $similar_thread['threadprefix'] = $prefix['displaystyle'].'&nbsp;';
                }
            }

            $similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']);
            $similar_thread['subject'] = htmlspecialchars_uni($similar_thread['subject']);
            $similar_thread['threadlink'] = get_thread_link($similar_thread['tid']);
            $similar_thread['lastpostlink'] = get_thread_link($similar_thread['tid'], 0, "lastpost");

            $lastpostdate = my_date('relative', $similar_thread['lastpost']);
            $lastposter = $similar_thread['lastposter'];
            $lastposteruid = $similar_thread['lastposteruid'];

            // Don't link to guest's profiles (they have no profile).
            if($lastposteruid == 0)
            {
                $lastposterlink = $lastposter;
            }
            else
            {
                $lastposterlink = build_profile_link($lastposter, $lastposteruid);
            }
            $similar_thread['replies'] = my_number_format($similar_thread['replies']);
            $similar_thread['views'] = my_number_format($similar_thread['views']);
            eval("\$similarthreadbits .= \"".$templates->get("showthread_similarthreads_bit")."\";");
        }
        if($count)
        {
            eval("\$similarthreads = \"".$templates->get("showthread_similarthreads")."\";");
        }
    }

    // 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");

        // 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;
            }
        }

        $postoptionschecked = array('signature' => '', 'emailnotify' => '');
        if($mybb->user['signature'])
        {
            $postoptionschecked['signature'] = 'checked="checked"';
        }

        // Hide signature option if no permission
        $option_signature = '';
        if($mybb->usergroup['canusesig'] && !$mybb->user['suspendsignature'])
        {
            eval("\$option_signature = \"".$templates->get('showthread_quickreply_options_signature')."\";");
        }

        if(isset($mybb->user['emailnotify']) && $mybb->user['emailnotify'] == 1)
        {
            $postoptionschecked['emailnotify'] = 'checked="checked"';
        }

        $trow = alt_trow();
        if($thread['closed'] == 1)
        {
            $trow = 'trow_shaded';
        }

        $moderation_notice = '';
        if(!is_moderator($forum['fid'], "canapproveunapproveposts"))
        {
            if($forumpermissions['modposts'] == 1)
            {
                $moderation_text = $lang->moderation_forum_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());
        $expaltext = (in_array("quickreply", $collapse)) ? "[+]" : "[-]";
        eval("\$quickreply = \"".$templates->get("showthread_quickreply")."\";");
    }

    $moderationoptions = '';

    // If the user is a moderator, show the moderation tools.
    if($ismod)
    {
        $customthreadtools = $customposttools = $standardthreadtools = $standardposttools = '';

        $threadnotesbox = $viewnotes = '';
        if(!empty($thread['notes']))
        {
            $thread['notes'] = nl2br(htmlspecialchars_uni($thread['notes']));

            if(strlen($thread['notes']) > 200)
            {
                eval("\$viewnotes = \"".$templates->get("showthread_threadnotes_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'])))
        {
            $gids = explode(',', $mybb->user['additionalgroups']);
            $gids[] = $mybb->user['usergroup'];
            $gids = array_filter(array_unique($gids));
            switch($db->type)
            {
                case "pgsql":
                case "sqlite":
                    foreach($gids as $gid)
                    {
                        $gid = (int)$gid;
                        $gidswhere .= " OR ','||groups||',' LIKE '%,{$gid},%'";
                    }
                    $query = $db->simple_select("modtools", 'tid, name, type', "(','||forums||',' LIKE '%,$fid,%' OR ','||forums||',' LIKE '%,-1,%' OR forums='') AND (groups='' OR ','||groups||',' LIKE '%,-1,%'{$gidswhere})");
                    break;
                default:
                    foreach($gids as $gid)
                    {
                        $gid = (int)$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})");
                    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")."\";");
                }
                else
                {
                    eval("\$customthreadtools .= \"".$templates->get("showthread_moderationoptions_custom_tool")."\";");
                }
            }

            // Build inline moderation dropdown
            if(!empty($customposttools))
            {
                eval("\$customposttools = \"".$templates->get("showthread_inlinemoderation_custom")."\";");
            }
        }

        $inlinemodsoftdelete = $inlinemodrestore = $inlinemoddelete = $inlinemodmanage = $inlinemodapprove = '';

        if(is_moderator($forum['fid'], "cansoftdeleteposts"))
        {
            eval("\$inlinemodsoftdelete = \"".$templates->get("showthread_inlinemoderation_softdelete")."\";");
        }

        if(is_moderator($forum['fid'], "canrestoreposts"))
        {
            eval("\$inlinemodrestore = \"".$templates->get("showthread_inlinemoderation_restore")."\";");
        }

        if(is_moderator($forum['fid'], "candeleteposts"))
        {
            eval("\$inlinemoddelete = \"".$templates->get("showthread_inlinemoderation_delete")."\";");
        }

        if(is_moderator($forum['fid'], "canmanagethreads"))
        {
            eval("\$inlinemodmanage = \"".$templates->get("showthread_inlinemoderation_manage")."\";");
        }

        if(is_moderator($forum['fid'], "canapproveunapproveposts"))
        {
            eval("\$inlinemodapprove = \"".$templates->get("showthread_inlinemoderation_approve")."\";");
        }

        if(!empty($inlinemodsoftdelete) || !empty($inlinemodrestore) || !empty($inlinemoddelete) || !empty($inlinemodmanage) || !empty($inlinemodapprove))
        {
            eval("\$standardposttools = \"".$templates->get("showthread_inlinemoderation_standard")."\";");
        }

        // Only show inline mod menu if there's options to show
        if(!empty($standardposttools) || !empty($customposttools))
        {
            eval("\$inlinemod = \"".$templates->get("showthread_inlinemoderation")."\";");
        }

        // Build thread moderation dropdown
        if(!empty($customthreadtools))
        {
            eval("\$customthreadtools = \"".$templates->get("showthread_moderationoptions_custom")."\";");
        }

        $openclosethread = $stickunstickthread = $deletethread = $threadnotes = $managethread = $adminpolloptions = $approveunapprovethread = $softdeletethread = '';

        if(is_moderator($forum['fid'], "canopenclosethreads"))
        {
            eval("\$openclosethread = \"".$templates->get("showthread_moderationoptions_openclose")."\";");
        }

        if(is_moderator($forum['fid'], "canstickunstickthreads"))
        {
            eval("\$stickunstickthread = \"".$templates->get("showthread_moderationoptions_stickunstick")."\";");
        }

        if(is_moderator($forum['fid'], "candeletethreads"))
        {
            eval("\$deletethread = \"".$templates->get("showthread_moderationoptions_delete")."\";");
        }

        if(is_moderator($forum['fid'], "canmanagethreads"))
        {
            eval("\$threadnotes = \"".$templates->get("showthread_moderationoptions_threadnotes")."\";");
            eval("\$managethread = \"".$templates->get("showthread_moderationoptions_manage")."\";");
        }

        if($pollbox && is_moderator($forum['fid'], "canmanagepolls"))
        {
            eval("\$adminpolloptions = \"".$templates->get("showthread_moderationoptions_deletepoll")."\";");
        }

        if(is_moderator($forum['fid'], "canapproveunapprovethreads"))
        {
            if($thread['visible'] == 0)
            {
                eval("\$approveunapprovethread = \"".$templates->get("showthread_moderationoptions_approve")."\";");
            }
            else
            {
                eval("\$approveunapprovethread = \"".$templates->get("showthread_moderationoptions_unapprove")."\";");
            }
        }

        if(is_moderator($forum['fid'], "cansoftdeletethreads") && $thread['visible'] != -1)
        {
            eval("\$softdeletethread = \"".$templates->get("showthread_moderationoptions_softdelete")."\";");
        }
        elseif(is_moderator($forum['fid'], "canrestorethreads") && $thread['visible'] == -1)
        {
            eval("\$softdeletethread = \"".$templates->get("showthread_moderationoptions_restore")."\";");
        }

        if(!empty($openclosethread) || !empty($stickunstickthread) || !empty($deletethread) || !empty($managethread) || !empty($adminpolloptions) || !empty($approveunapprovethread) || !empty($softdeletethread))
        {
            eval("\$standardthreadtools = \"".$templates->get("showthread_moderationoptions_standard")."\";");
        }

        // Only show mod menu if there's any options to show
        if(!empty($standardthreadtools) || !empty($customthreadtools))
        {
            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 'add poll' link to thread creator (or mods) if thread doesn't have a poll already
    $addpoll = '';
    $time = TIME_NOW;
    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;

    if($mybb->user['uid'])
    {
        $query = $db->simple_select("threadsubscriptions", "tid", "tid='".(int)$tid."' AND uid='".(int)$mybb->user['uid']."'", array('limit' => 1));

        if($db->fetch_field($query, 'tid'))
        {
            $add_remove_subscription = 'remove';
            $add_remove_subscription_text = $lang->unsubscribe_thread;
        }

        eval("\$addremovesubscription = \"".$templates->get("showthread_subscription")."\";");
    }

    $classic_header = '';
    if($mybb->settings['postlayout'] == "classic")
    {
        eval("\$classic_header = \"".$templates->get("showthread_classic_header")."\";");
    }

    // Get users viewing this thread
    if($mybb->settings['browsingthisthread'] != 0)
    {
        $timecut = TIME_NOW - $mybb->settings['wolcutoff'];

        $comma = '';
        $guestcount = 0;
        $membercount = 0;
        $inviscount = 0;
        $onlinemembers = '';
        $doneusers = array();

        $query = $db->query("
            SELECT s.ip, s.uid, s.time, u.username, u.invisible, u.usergroup, u.displaygroup
            FROM ".TABLE_PREFIX."sessions s
            LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid)
            WHERE s.time > '$timecut' AND location2='$tid' AND nopermission != 1
            ORDER BY u.username ASC, s.time DESC
        ");

        while($user = $db->fetch_array($query))
        {
            if($user['uid'] == 0)
            {
                ++$guestcount;
            }
            else if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time'])
            {
                ++$membercount;
                $doneusers[$user['uid']] = $user['time'];

                $invisiblemark = '';
                if($user['invisible'] == 1)
                {
                    $invisiblemark = "*";
                    ++$inviscount;
                }

                if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid'])
                {
                    $user['profilelink'] = get_profile_link($user['uid']);
                    $user['username'] = format_name(htmlspecialchars_uni($user['username']), $user['usergroup'], $user['displaygroup']);
                    $user['reading'] = my_date($mybb->settings['timeformat'], $user['time']);

                    eval("\$onlinemembers .= \"".$templates->get("showthread_usersbrowsing_user", 1, 0)."\";");
                    $comma = $lang->comma;
                }
            }
        }

        $guestsonline = '';
        if($guestcount)
        {
            $guestsonline = $lang->sprintf($lang->users_browsing_thread_guests, $guestcount);
        }

        $invisonline = '';
        if($mybb->user['invisible'] == 1)
        {
            // the user was counted as invisible user --> correct the inviscount
            $inviscount -= 1;
        }
        if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1)
        {
            $invisonline = $lang->sprintf($lang->users_browsing_forum_invis, $inviscount);
        }

        $onlinesep = '';
        if($invisonline != '' && $onlinemembers)
        {
            $onlinesep = $lang->comma;
        }

        $onlinesep2 = '';
        if($invisonline != '' && $guestcount || $onlinemembers && $guestcount)
        {
            $onlinesep2 = $lang->comma;
        }

        eval("\$usersbrowsing = \"".$templates->get("showthread_usersbrowsing")."\";");
    }

    if($thread['visible'] == -1 )
    {
        $thread_deleted = 1;
    }

    $plugins->run_hooks("showthread_end");

    eval("\$showthread = \"".$templates->get("showthread")."\";");
    output_page($showthread);
}

/**
* Build a navigation tree for threaded display.
*
* @param int $replyto
* @param int $indent
* @return string
*/
function buildtree($replyto=0, $indent=0)
{
    global $tree, $mybb, $theme, $mybb, $pid, $tid, $templates, $parser, $lang;

    $indentsize = 13 * $indent;

    ++$indent;
    $posts = '';
    if(is_array($tree[$replyto]))
    {
        foreach($tree[$replyto] as $key => $post)
        {
            $postdate = my_date('relative', $post['dateline']);
            $post['subject'] = htmlspecialchars_uni($parser->parse_badwords($post['subject']));

            if(!$post['subject'])
            {
                $post['subject'] = "[".$lang->no_subject."]";
            }

            $post['username'] = htmlspecialchars_uni($post['username']);
            $post['profilelink'] = build_profile_link($post['username'], $post['uid']);

            if($mybb->input['pid'] == $post['pid'])
            {
                eval("\$posts .= \"".$templates->get("showthread_threaded_bitactive")."\";");
            }
            else
            {
                eval("\$posts .= \"".$templates->get("showthread_threaded_bit")."\";");
            }

            if($tree[$post['pid']])
            {
                $posts .= buildtree($post['pid'], $indent);
            }
        }
        --$indent;
    }
    return $posts;
}
Zitieren
#14
Ist schon klar, dass das Feld nicht vorbelegt ist. Ich wollte nur wissen, ob denn bei den Autorinformationen  des Beitrags wenigstens "Gast" steht.

Ich kann den Fehler bei mir nicht provozieren und auch nicht nachvollziehen.
Wenn kein anderer eine zündende Idee hat, kannst Du mir gern mal in einem Testforum einen Admin-Account erstellen.
Ich schaue es mir die Tage mal unverbindlich an.
Zitieren
#15
Ich habe dir mal schon einen Zugang angelegt und ihn dir per PN geschickt.
Ich danke dir auf jeden Fall schon mal für deine Mühe Heart
Zitieren
#16
Was mir aufgefallen ist: Wenn ich als Gast in der Übersicht auf manche Links zu den letzten Beiträgen klicke, erhalte ich im Thema nur die Meldung, dass ich nicht angemeldet bin und das Thema daher nicht lesen kann.
Wenn man aber ein Thema nicht lesen darf, wird einem standardmäßig der letzte Beitrag in der Übersicht gar nicht angezeigt.
Also musst du irgendetwas dahingehend im Forum geändert haben, ob durch ein Plugin oder PHP in Templates oder durch Bearbeiten der inc/functions_forumlist.php o.ä. Daher vermute ich, irgendwo daher wird das Problem kommen.
Zitieren
#17
(16.04.2020, 14:14)doylecc schrieb: Wenn man aber ein Thema nicht lesen darf, wird einem standardmäßig der letzte Beitrag in der Übersicht gar nicht angezeigt.

Richtig!
An dieser Stelle müsste eigentlich das Template "forumbit_depth2_forum_lastpost_hidden" und nicht
"forumbit_depth2_forum_lastpost" geladen werden.
Das ist ein Anhaltspunkt.
Zitieren
#18
Im Forum gibt es ja Bereiche die auch für Gäste freigegeben sind. Klar der Support, die Gesuche usw. Die Gäste können also sowohl lesen als auch Antworten. Es funktioniert auch, sofern ein Name eingetragen wird, also die Zeile bei der Antwort nicht leer bleibt. Dann zeigt er den Beitrag ganz normal an. Das Phänomen tritt auf wenn die Schnellantwort genutzt wird oder aber man auf Antworten klickt und oben nichts einträgt.
Die Bereiche wo sie nicht antworten können, weil für Gäste nicht einsehbar, da sollen sie ja auch nicht lesen oder antworten können. Daher auch gesperrt.
Zitieren
#19
Das haben wir alles verstanden. Wink 
In Deinen Foren werden allerdings auch den Gästen das "lastpost" angezeigt, obwohl in diesen Foren Gäste gar keine Berechtigungen haben.
Das ist ein verändertes Verhalten und muss durch geänderte Templates oder php-Dateien hervorgerufen werden.

Wenn ich morgen Zeit finde, schaue ich`s mir näher an.
Zitieren
#20
Achso... *rot wird* Sorry... ja, das ist eine Änderung die wir für jedes Forum vornehmen, aber ich kann auch gerne die geänderten PHPs mit veröffentlichen, das ist bei uns immer class_parser, dann die forumlist und auch die funktions_forumlist. Damit soll ja erreicht werden, das auch Gäste sehen können, das das IP aktiv ist. Aber dieses Phänomen hatten wir bisher nicht.

functions_forumlist
Code:
<?php
/**
* MyBB 1.8
* Copyright 2014 MyBB Group, All Rights Reserved
*
* Website: http://www.mybb.com
* License: http://www.mybb.com/about/license
*
*/

/**
* Build a list of forum bits.
*
* @param int $pid The parent forum to fetch the child forums for (0 assumes all)
* @param int $depth The depth to return forums with.
* @return array Array of information regarding the child forums of this parent forum
*/
function build_forumbits($pid=0, $depth=1)
{
global $db, $fcache, $moderatorcache, $forumpermissions, $theme, $mybb, $templates, $bgcolor, $collapsed, $lang, $showdepth, $plugins, $parser, $forum_viewers;
static $private_forums;

$forum_listing = '';

// If no forums exist with this parent, do nothing
if(empty($fcache[$pid]) || !is_array($fcache[$pid]))
{
return;
}

$parent_counters['threads'] = 0;
$parent_counters['posts'] = 0;
$parent_counters['unapprovedposts'] = 0;
$parent_counters['unapprovedthreads'] = 0;
$parent_counters['viewers'] = 0;
$forum_list = $comma = '';
$donecount = 0;

// Foreach of the forums in this parent
foreach($fcache[$pid] as $parent)
{
foreach($parent as $forum)
{
$subforums = $sub_forums = '';
$lastpost_data = array(
'lastpost' => 0
);
$forum_viewers_text = '';
$forum_viewers_text_plain = '';

// Get the permissions for this forum
$permissions = $forumpermissions[$forum['fid']];

// If this user doesnt have permission to view this forum and we're hiding private forums, skip this forum
if($permissions['canview'] != 1 && $mybb->settings['hideprivateforums'] == 1)
{
continue;
}

$forum = $plugins->run_hooks("build_forumbits_forum", $forum);

// Build the link to this forum
$forum_url = get_forum_link($forum['fid']);

// This forum has a password, and the user isn't authenticated with it - hide post information
$hideinfo = $hidecounters = false;
$hidelastpostinfo = false;
$showlockicon = 0;
if(isset($permissions['canviewthreads']) && $permissions['canviewthreads'] != 1)
            {
                $hideinfo = false;
            }

if(isset($permissions['canonlyviewownthreads']) && $permissions['canonlyviewownthreads'] == 1)
{
$hidecounters = true;

// If we only see our own threads, find out if there's a new post in one of them so the lightbulb shows
if(!is_array($private_forums))
{
$private_forums = $fids = array();
foreach($fcache as $fcache_p)
{
foreach($fcache_p as $parent_p)
{
foreach($parent_p as $forum_p)
{
if($forumpermissions[$forum_p['fid']]['canonlyviewownthreads'])
{
$fids[] = $forum_p['fid'];
}
}
}
}

if(!empty($fids))
{
$fids = implode(',', $fids);
$query = $db->simple_select("threads", "tid, fid, subject, lastpost, lastposter, lastposteruid", "uid = '{$mybb->user['uid']}' AND fid IN ({$fids}) AND visible != '-2'", array("order_by" => "lastpost", "order_dir" => "desc"));

while($thread = $db->fetch_array($query))
{
if(!$private_forums[$thread['fid']])
{
$private_forums[$thread['fid']] = $thread;
}
}
}
}

if($private_forums[$forum['fid']]['lastpost'])
{
$forum['lastpost'] = $private_forums[$forum['fid']]['lastpost'];

$lastpost_data = array(
"lastpost" => $private_forums[$forum['fid']]['lastpost'],
"lastpostsubject" => $private_forums[$forum['fid']]['subject'],
"lastposter" => $private_forums[$forum['fid']]['lastposter'],
"lastposttid" => $private_forums[$forum['fid']]['tid'],
"lastposteruid" => $private_forums[$forum['fid']]['lastposteruid']
);
}
}
else
{
$lastpost_data = array(
"lastpost" => $forum['lastpost'],
"lastpostsubject" => $forum['lastpostsubject'],
"lastposter" => $forum['lastposter'],
"lastposttid" => $forum['lastposttid'],
"lastposteruid" => $forum['lastposteruid']
);
}

if($forum['password'] != '' && $mybb->cookies['forumpass'][$forum['fid']] !== md5($mybb->user['uid'].$forum['password']))
{
    $hideinfo = true;
    $showlockicon = 1;
}

// Fetch subforums of this forum
if(isset($fcache[$forum['fid']]))
{
$forum_info = build_forumbits($forum['fid'], $depth+1);

// Increment forum counters with counters from child forums
$forum['threads'] += $forum_info['counters']['threads'];
$forum['posts'] += $forum_info['counters']['posts'];
$forum['unapprovedthreads'] += $forum_info['counters']['unapprovedthreads'];
$forum['unapprovedposts'] += $forum_info['counters']['unapprovedposts'];

if(!empty($forum_info['counters']['viewing']))
{
$forum['viewers'] += $forum_info['counters']['viewing'];
}

// If the child forums' lastpost is greater than the one for this forum, set it as the child forums greatest.
if($forum_info['lastpost']['lastpost'] > $lastpost_data['lastpost'])
{
$lastpost_data = $forum_info['lastpost'];

/*
// If our subforum is unread, then so must be our parents. Force our parents to unread as well
if(strstr($forum_info['lightbulb']['folder'], "on") !== false)
{
$forum['lastread'] = 0;
}
// Otherwise, if we  have an explicit record in the db, we must make sure that it is explicitly set
else
{
$lastpost_data['lastpost'] = $forum['lastpost'];
}*/
}

$sub_forums = $forum_info['forum_list'];
}

// If we are hiding information (lastpost) because we aren't authenticated against the password for this forum, remove them
if($hidelastpostinfo == true)
{
$lastpost_data = array(
'lastpost' => 0,
'lastposter' => ''
);
}

// If the current forums lastpost is greater than other child forums of the current parent and forum info isn't hidden, overwrite it
if((!isset($parent_lastpost) || $lastpost_data['lastpost'] > $parent_lastpost['lastpost']) && $hideinfo != true)
{
$parent_lastpost = $lastpost_data;
}

if(is_array($forum_viewers) && isset($forum_viewers[$forum['fid']]) && $forum_viewers[$forum['fid']] > 0)
{
$forum['viewers'] = $forum_viewers[$forum['fid']];
}

// Increment the counters for the parent forum (returned later)
if($hideinfo != true && $hidecounters != true)
{
$parent_counters['threads'] += $forum['threads'];
$parent_counters['posts'] += $forum['posts'];
$parent_counters['unapprovedposts'] += $forum['unapprovedposts'];
$parent_counters['unapprovedthreads'] += $forum['unapprovedthreads'];

if(!empty($forum['viewers']))
{
$parent_counters['viewers'] += $forum['viewers'];
}
}

// Done with our math, lets talk about displaying - only display forums which are under a certain depth
if($depth > $showdepth)
{
continue;
}

// Get the lightbulb status indicator for this forum based on the lastpost
$lightbulb = get_forum_lightbulb($forum, $lastpost_data, $showlockicon);

// Fetch the number of unapproved threads and posts for this forum
$unapproved = get_forum_unapproved($forum);

if($hideinfo == true)
{
unset($unapproved);
}

// Sanitize name and description of forum.
$forum['name'] = preg_replace("#&(?!\#[0-9]+;)#si", "&amp;", $forum['name']); // Fix & but allow unicode
$forum['description'] = preg_replace("#&(?!\#[0-9]+;)#si", "&amp;", $forum['description']); // Fix & but allow unicode
$forum['name'] = preg_replace("#&([^\#])(?![a-z1-4]{1,10};)#i", "&$1", $forum['name']);
$forum['description'] = preg_replace("#&([^\#])(?![a-z1-4]{1,10};)#i", "&$1", $forum['description']);

// If this is a forum and we've got subforums of it, load the subforums list template
if($depth == 2 && $sub_forums)
{
eval("\$subforums = \"".$templates->get("forumbit_subforums")."\";");
}
// A depth of three indicates a comma separated list of forums within a forum
else if($depth == 3)
{
if($donecount < $mybb->settings['subforumsindex'])
{
$statusicon = '';

// Showing mini status icons for this forum
if($mybb->settings['subforumsstatusicons'] == 1)
{
$lightbulb['folder'] = "mini".$lightbulb['folder'];
eval("\$statusicon = \"".$templates->get("forumbit_depth3_statusicon", 1, 0)."\";");
}

// Fetch the template and append it to the list
eval("\$forum_list .= \"".$templates->get("forumbit_depth3", 1, 0)."\";");
$comma = $lang->comma;
}

// Have we reached our max visible subforums? put a nice message and break out of the loop
++$donecount;
if($donecount == $mybb->settings['subforumsindex'])
{
if(subforums_count($fcache[$pid]) > $donecount)
{
$forum_list .= $comma.$lang->sprintf($lang->more_subforums, (subforums_count($fcache[$pid]) - $donecount));
}
}
continue;
}

// Forum is a category, set template type
if($forum['type'] == 'c')
{
$forumcat = '_cat';
}
// Forum is a standard forum, set template type
else
{
$forumcat = '_forum';
}

if($forum['linkto'] == '')
{
// No posts have been made in this forum - show never text
if(($lastpost_data['lastpost'] == 0 || $lastpost_data['lastposter'] == '') && $hideinfo != true)
{
                $lastavatar = "";
eval("\$lastpost = \"".$templates->get("forumbit_depth2_forum_lastpost_never")."\";");
}
elseif($hideinfo != true)
{
// Format lastpost date and time
$lastpost_date = my_date('relative', $lastpost_data['lastpost']);

// Set up the last poster, last post thread id, last post subject and format appropriately
                    $lastposteruid = $lastpost_data['lastposteruid'];
$lastposteravatar = $db->fetch_field($db->query("SELECT mybb_users.avatar AS lastposteravatar FROM mybb_users WHERE mybb_users.uid = '$lastposteruid'"), "lastposteravatar");
$lastavatar = "<img src=\"{$lastposteravatar}\"style=\"height: 50px; border-radius: 50px; float: right;position: relative; border: 2px ridge #fff;margin-top: -20px;margin-right: 10px;\"/>";
$lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid']);
$lastpost_link = get_thread_link($lastpost_data['lastposttid'], 0, "lastpost");
$lastpost_subject = $full_lastpost_subject = $parser->parse_badwords($lastpost_data['lastpostsubject']);
if(my_strlen($lastpost_subject) > 25)
{
$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
}
$lastpost_subject = htmlspecialchars_uni($lastpost_subject);
$full_lastpost_subject = htmlspecialchars_uni($full_lastpost_subject);

// Call lastpost template
if($depth != 1)
{
eval("\$lastpost = \"".$templates->get("forumbit_depth{$depth}_forum_lastpost")."\";");
}
}

if($mybb->settings['showforumviewing'] != 0 && $forum['viewers'] > 0)
{
if($forum['viewers'] == 1)
{
$forum_viewers_text = $lang->viewing_one;
}
else
{
$forum_viewers_text = $lang->sprintf($lang->viewing_multiple, $forum['viewers']);
}
$forum_viewers_text_plain = $forum_viewers_text;
eval("\$forum_viewers_text = \"".$templates->get("forumbit_depth2_forum_viewers")."\";");
}
}
// If this forum is a link or is password protected and the user isn't authenticated, set counters to "-"
if($forum['linkto'] != '' || $hideinfo == true || $hidecounters == true)
{
$posts = "-";
$threads = "-";
}
// Otherwise, format thread and post counts
else
{
$posts = my_number_format($forum['posts']);
$threads = my_number_format($forum['threads']);
}

// If this forum is a link or is password protected and the user isn't authenticated, set lastpost to "-"
if($forum['linkto'] != '' || $hideinfo == true || $hidelastpostinfo == true)
{
eval("\$lastpost = \"".$templates->get("forumbit_depth2_forum_lastpost_hidden")."\";");
}

// Moderator column is not off
if($mybb->settings['modlist'] != 0)
{
$done_moderators = array(
"users" => array(),
"groups" => array()
);
$moderators = '';
// Fetch list of moderators from this forum and its parents
$parentlistexploded = explode(',', $forum['parentlist']);
foreach($parentlistexploded as $mfid)
{
// This forum has moderators
if(isset($moderatorcache[$mfid]) && is_array($moderatorcache[$mfid]))
{
// Fetch each moderator from the cache and format it, appending it to the list
foreach($moderatorcache[$mfid] as $modtype)
{
foreach($modtype as $moderator)
{
if($moderator['isgroup'])
{
if(in_array($moderator['id'], $done_moderators['groups']))
{
continue;
}

$moderator['title'] = htmlspecialchars_uni($moderator['title']);

eval("\$moderators .= \"".$templates->get("forumbit_moderators_group", 1, 0)."\";");
$done_moderators['groups'][] = $moderator['id'];
}
else
{
if(in_array($moderator['id'], $done_moderators['users']))
{
continue;
}

$moderator['profilelink'] = get_profile_link($moderator['id']);
$moderator['username'] = htmlspecialchars_uni($moderator['username']);

eval("\$moderators .= \"".$templates->get("forumbit_moderators_user", 1, 0)."\";");
$done_moderators['users'][] = $moderator['id'];
}
$comma = $lang->comma;
}
}
}
}
$comma = '';

// If we have a moderators list, load the template
if($moderators)
{
eval("\$modlist = \"".$templates->get("forumbit_moderators")."\";");
}
else
{
$modlist = '';
}
}

// Descriptions aren't being shown - blank them
if($mybb->settings['showdescriptions'] == 0)
{
$forum['description'] = '';
}

// Check if this category is either expanded or collapsed and hide it as necessary.
$expdisplay = '';
$collapsed_name = "cat_{$forum['fid']}_c";
if(isset($collapsed[$collapsed_name]) && $collapsed[$collapsed_name] == "display: show;")
{
$expcolimage = "collapse_collapsed.png";
$expdisplay = "display: none;";
$expthead = " thead_collapsed";
$expaltext = "[+]";
}
else
{
$expcolimage = "collapse.png";
$expthead = "";
$expaltext = "[-]";
}

// Swap over the alternate backgrounds
$bgcolor = alt_trow();

// Add the forum to the list
eval("\$forum_list .= \"".$templates->get("forumbit_depth$depth$forumcat")."\";");
}
}

if(!isset($parent_lastpost))
{
$parent_lastpost = 0;
}

if(!isset($lightbulb))
{
$lightbulb = '';
}

// Return an array of information to the parent forum including child forums list, counters and lastpost information
return array(
"forum_list" => $forum_list,
"counters" => $parent_counters,
"lastpost" => $parent_lastpost,
"lightbulb" => $lightbulb,
);
}

/**
* Fetch the status indicator for a forum based on its last post and the read date
*
* @param array $forum Array of information about the forum
* @param array $lastpost Array of information about the lastpost date
* @param int $locked Whether or not this forum is locked or not
* @return array Array of the folder image to be shown and the alt text
*/
function get_forum_lightbulb($forum, $lastpost, $locked=0)
{
global $mybb, $lang, $db, $unread_forums;

// This forum is a redirect, so override the folder icon with the "offlink" icon.
if($forum['linkto'] != '')
{
$folder = "offlink";
$altonoff = $lang->forum_redirect;
}
// This forum is closed, so override the folder icon with the "offlock" icon.
elseif($forum['open'] == 0 || $locked)
{
$folder = "offlock";
$altonoff = $lang->forum_locked;
}
else
{
// Fetch the last read date for this forum
if(!empty($forum['lastread']))
{
$forum_read = $forum['lastread'];
}
elseif(!empty($mybb->cookies['mybb']['readallforums']))
{
// We've hit the read all forums as a guest, so use the lastvisit of the user
$forum_read = $mybb->cookies['mybb']['lastvisit'];
}
else
{
$forum_read = 0;
$threadcut = TIME_NOW - 60*60*24*$mybb->settings['threadreadcut'];

// If the user is a guest, do they have a forumsread cookie?
if(!$mybb->user['uid'] && isset($mybb->cookies['mybb']['forumread']))
{
// If they've visited us before, then they'll have this cookie - otherwise everything is unread...
$forum_read = my_get_array_cookie("forumread", $forum['fid']);
}
else if($mybb->user['uid'] && $mybb->settings['threadreadcut'] > 0 && $threadcut > $lastpost['lastpost'])
{
// We have a user, the forum's unread and we're over our threadreadcut limit for the lastpost - we mark these as read
$forum_read = $lastpost['lastpost'] + 1;
}
}

//if(!$forum_read)
//{
//$forum_read = $mybb->user['lastvisit'];
//}

    // If the lastpost is greater than the last visit and is greater than the forum read date, we have a new post
if($lastpost['lastpost'] > $forum_read && $lastpost['lastpost'] != 0)
{
$unread_forums++;
$folder = "on";
$altonoff = $lang->new_posts;
}
// Otherwise, no new posts
else
{
$folder = "off";
$altonoff = $lang->no_new_posts;
}
}

return array(
"folder" => $folder,
"altonoff" => $altonoff
);
}

/**
* Fetch the number of unapproved posts, formatted, from a forum
*
* @param array $forum Array of information about the forum
* @return array Array containing formatted string for posts and string for threads
*/
function get_forum_unapproved($forum)
{
global $lang, $templates;

$unapproved_threads = $unapproved_posts = '';

// If the user is a moderator we need to fetch the count
if(is_moderator($forum['fid'], "canviewunapprove"))
{
// Forum has one or more unaproved posts, format language string accordingly
if($forum['unapprovedposts'])
{
if($forum['unapprovedposts'] > 1)
{
$unapproved_posts_count = $lang->sprintf($lang->forum_unapproved_posts_count, $forum['unapprovedposts']);
}
else
{
$unapproved_posts_count = $lang->sprintf($lang->forum_unapproved_post_count, 1);
}

$forum['unapprovedposts'] = my_number_format($forum['unapprovedposts']);
eval("\$unapproved_posts = \"".$templates->get("forumbit_depth2_forum_unapproved_posts")."\";");
}
// Forum has one or more unapproved threads, format language string accordingly
if($forum['unapprovedthreads'])
{
if($forum['unapprovedthreads'] > 1)
{
$unapproved_threads_count = $lang->sprintf($lang->forum_unapproved_threads_count, $forum['unapprovedthreads']);
}
else
{
$unapproved_threads_count = $lang->sprintf($lang->forum_unapproved_thread_count, 1);
}

$forum['unapprovedthreads'] = my_number_format($forum['unapprovedthreads']);
eval("\$unapproved_threads = \"".$templates->get("forumbit_depth2_forum_unapproved_threads")."\";");
}
}
return array(
"unapproved_posts" => $unapproved_posts,
"unapproved_threads" => $unapproved_threads
);
}



und die forumdisplay

Code:
<?php
/**
* MyBB 1.8
* Copyright 2014 MyBB Group, All Rights Reserved
*
* Website: http://www.mybb.com
* License: http://www.mybb.com/about/license
*
*/

define("IN_MYBB", 1);
define('THIS_SCRIPT', 'forumdisplay.php');

$templatelist = "forumdisplay,forumdisplay_thread,forumbit_depth1_cat,forumbit_depth2_cat,forumbit_depth2_forum,forumdisplay_subforums,forumdisplay_threadlist,forumdisplay_moderatedby,forumdisplay_newthread,forumdisplay_searchforum,forumdisplay_thread_rating,forumdisplay_threadlist_rating,forumdisplay_threadlist_sortrating";
$templatelist .= ",forumbit_depth1_forum_lastpost,forumdisplay_thread_multipage_page,forumdisplay_thread_multipage,forumdisplay_thread_multipage_more,forumdisplay_thread_gotounread,forumbit_depth2_forum_lastpost,forumdisplay_rules,forumdisplay_rules_link,forumdisplay_orderarrow";
$templatelist .= ",multipage,multipage_breadcrumb,multipage_end,multipage_jump_page,multipage_nextpage,multipage_page,multipage_page_current,multipage_page_link_current,multipage_prevpage,multipage_start,forumdisplay_thread_icon,forumdisplay_thread_unapproved_posts,forumdisplay_nothreads,forumdisplay_announcements_announcement_modbit,forumbit_depth2_forum_viewers";
$templatelist .= ",forumjump_advanced,forumjump_special,forumjump_bit,forumdisplay_password_wrongpass,forumdisplay_password,forumdisplay_inlinemoderation_custom_tool,forumdisplay_inlinemoderation_custom,forumbit_subforums,forumbit_moderators,forumbit_depth2_forum_lastpost_never,forumbit_depth2_forum_lastpost_hidden";
$templatelist .= ",forumdisplay_usersbrowsing_user,forumdisplay_usersbrowsing,forumdisplay_inlinemoderation,forumdisplay_thread_modbit,forumdisplay_inlinemoderation_col,forumdisplay_inlinemoderation_selectall,forumdisplay_threadlist_clearpass,forumdisplay_thread_rating_moved";
$templatelist .= ",forumdisplay_announcements_announcement,forumdisplay_announcements,forumdisplay_threads_sep,forumbit_depth3_statusicon,forumbit_depth3,forumdisplay_sticky_sep,forumdisplay_thread_attachment_count,forumdisplay_rssdiscovery,forumdisplay_announcement_rating,forumbit_moderators_group";
$templatelist .= ",forumdisplay_inlinemoderation_openclose,forumdisplay_inlinemoderation_stickunstick,forumdisplay_inlinemoderation_softdelete,forumdisplay_inlinemoderation_restore,forumdisplay_inlinemoderation_delete,forumdisplay_inlinemoderation_manage,forumdisplay_inlinemoderation_approveunapprove";
$templatelist .= ",forumbit_depth2_forum_unapproved_posts,forumbit_depth2_forum_unapproved_threads,forumbit_moderators_user,forumdisplay_inlinemoderation_standard,forumdisplay_threadlist_prefixes_prefix,forumdisplay_threadlist_prefixes,forumdisplay_nopermission";

require_once "./global.php";
require_once MYBB_ROOT."inc/functions_post.php";
require_once MYBB_ROOT."inc/functions_forumlist.php";
require_once MYBB_ROOT."inc/class_parser.php";
$parser = new postParser;

$orderarrow = $sortsel = array('rating' => '', 'subject' => '', 'starter' => '', 'started' => '', 'replies' => '', 'views' => '', 'lastpost' => '');
$ordersel = array('asc' => '', 'desc' => '');
$datecutsel = array(1 => '', 5 => '', 10 => '', 20 => '', 50 => '', 75 => '', 100 => '', 365 => '', 9999 => '');
$rules = '';

// Load global language phrases
$lang->load("forumdisplay");

$plugins->run_hooks("forumdisplay_start");

$fid = $mybb->get_input('fid', MyBB::INPUT_INT);
if($fid < 0)
{
switch($fid)
{
case "-1":
$location = "index.php";
break;
case "-2":
$location = "search.php";
break;
case "-3":
$location = "usercp.php";
break;
case "-4":
$location = "private.php";
break;
case "-5":
$location = "online.php";
break;
}
if($location)
{
header("Location: ".$location);
exit;
}
}

// Get forum info
$foruminfo = get_forum($fid);
if(!$foruminfo)
{
error($lang->error_invalidforum);
}

$archive_url = build_archive_link("forum", $fid);

$currentitem = $fid;
build_forum_breadcrumb($fid);
$parentlist = $foruminfo['parentlist'];

// To validate, turn & to &amp; but support unicode
$foruminfo['name'] = preg_replace("#&(?!\#[0-9]+;)#si", "&amp;", $foruminfo['name']);

$forumpermissions = forum_permissions();
$fpermissions = $forumpermissions[$fid];

if($fpermissions['canview'] != 1 || $fpermissions['canviewthreads'] != 1)
{
error_no_permission();
}

if($mybb->user['uid'] == 0)
{
// Cookie'd forum read time
$forumsread = array();
if(isset($mybb->cookies['mybb']['forumread']))
{
$forumsread = my_unserialize($mybb->cookies['mybb']['forumread']);
}

if(is_array($forumsread) && empty($forumsread))
{
if(isset($mybb->cookies['mybb']['readallforums']))
{
$forumsread[$fid] = $mybb->cookies['mybb']['lastvisit'];
}
else
{
$forumsread = array();
}
}

$query = $db->simple_select("forums", "*", "active != 0", array("order_by" => "pid, disporder"));
}
else
{
// Build a forum cache from the database
$query = $db->query("
SELECT f.*, fr.dateline AS lastread
FROM ".TABLE_PREFIX."forums f
LEFT JOIN ".TABLE_PREFIX."forumsread fr ON (fr.fid=f.fid AND fr.uid='{$mybb->user['uid']}')
WHERE f.active != 0
ORDER BY pid, disporder
");
}

while($forum = $db->fetch_array($query))
{
if($mybb->user['uid'] == 0 && isset($forumsread[$forum['fid']]))
{
$forum['lastread'] = $forumsread[$forum['fid']];
}

$fcache[$forum['pid']][$forum['disporder']][$forum['fid']] = $forum;
}

// Get the forum moderators if the setting is enabled.
if($mybb->settings['modlist'] != 0)
{
$moderatorcache = $cache->read("moderators");
}

$bgcolor = "trow1";
if($mybb->settings['subforumsindex'] != 0)
{
$showdepth = 3;
}
else
{
$showdepth = 2;
}

$subforums = '';
$child_forums = build_forumbits($fid, 2);
$forums = $child_forums['forum_list'];

if($forums)
{
$lang->sub_forums_in = $lang->sprintf($lang->sub_forums_in, $foruminfo['name']);
eval("\$subforums = \"".$templates->get("forumdisplay_subforums")."\";");
}

$excols = "forumdisplay";

// Password protected forums
check_forum_password($foruminfo['fid']);

if($foruminfo['linkto'])
{
header("Location: {$foruminfo['linkto']}");
exit;
}

// Make forum jump...
if($mybb->settings['enableforumjump'] != 0)
{
$forumjump = build_forum_jump("", $fid, 1);
}

if($foruminfo['type'] == "f" && $foruminfo['open'] != 0 && $fpermissions['canpostthreads'] != 0 && $mybb->user['suspendposting'] == 0)
{
eval("\$newthread = \"".$templates->get("forumdisplay_newthread")."\";");
}

if($fpermissions['cansearch'] != 0 && $foruminfo['type'] == "f")
{
eval("\$searchforum = \"".$templates->get("forumdisplay_searchforum")."\";");
}

// Gather forum stats
$has_announcements = $has_modtools = false;
$forum_stats = $cache->read("forumsdisplay");

if(is_array($forum_stats))
{
if(!empty($forum_stats[-1]['modtools']) || !empty($forum_stats[$fid]['modtools']))
{
// Mod tools are specific to forums, not parents
$has_modtools = true;
}

if(!empty($forum_stats[-1]['announcements']) || !empty($forum_stats[$fid]['announcements']))
{
// Global or forum-specific announcements
$has_announcements = true;
}
}

$done_moderators = array(
"users" => array(),
"groups" => array()
);

$moderators = '';
$parentlistexploded = explode(",", $parentlist);

foreach($parentlistexploded as $mfid)
{
// This forum has moderators
if(is_array($moderatorcache[$mfid]))
{
// Fetch each moderator from the cache and format it, appending it to the list
foreach($moderatorcache[$mfid] as $modtype)
{
foreach($modtype as $moderator)
{
if($moderator['isgroup'])
{
if(in_array($moderator['id'], $done_moderators['groups']))
{
continue;
}

$moderator['title'] = htmlspecialchars_uni($moderator['title']);

eval("\$moderators .= \"".$templates->get("forumbit_moderators_group", 1, 0)."\";");
$done_moderators['groups'][] = $moderator['id'];
}
else
{
if(in_array($moderator['id'], $done_moderators['users']))
{
continue;
}

$moderator['profilelink'] = get_profile_link($moderator['id']);
$moderator['username'] = format_name(htmlspecialchars_uni($moderator['username']), $moderator['usergroup'], $moderator['displaygroup']);

eval("\$moderators .= \"".$templates->get("forumbit_moderators_user", 1, 0)."\";");
$done_moderators['users'][] = $moderator['id'];
}
$comma = $lang->comma;
}
}
}

if(!empty($forum_stats[$mfid]['announcements']))
{
$has_announcements = true;
}
}
$comma = '';

// If we have a moderators list, load the template
if($moderators)
{
eval("\$moderatedby = \"".$templates->get("forumdisplay_moderatedby")."\";");
}
else
{
$moderatedby = '';
}

// Get the users browsing this forum.
if($mybb->settings['browsingthisforum'] != 0)
{
$timecut = TIME_NOW - $mybb->settings['wolcutoff'];

$comma = '';
$guestcount = 0;
$membercount = 0;
$inviscount = 0;
$onlinemembers = '';
$doneusers = array();

$query = $db->query("
SELECT s.ip, s.uid, u.username, s.time, u.invisible, u.usergroup, u.usergroup, u.displaygroup
FROM ".TABLE_PREFIX."sessions s
LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid)
WHERE s.time > '$timecut' AND location1='$fid' AND nopermission != 1
ORDER BY u.username ASC, s.time DESC
");

while($user = $db->fetch_array($query))
{
if($user['uid'] == 0)
{
++$guestcount;
}
else
{
if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time'])
{
$doneusers[$user['uid']] = $user['time'];
++$membercount;
if($user['invisible'] == 1)
{
$invisiblemark = "*";
++$inviscount;
}
else
{
$invisiblemark = '';
}

if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid'])
{
$user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']);
$user['profilelink'] = build_profile_link($user['username'], $user['uid']);
eval("\$onlinemembers .= \"".$templates->get("forumdisplay_usersbrowsing_user", 1, 0)."\";");
$comma = $lang->comma;
}
}
}
}

$guestsonline = '';
if($guestcount)
{
$guestsonline = $lang->sprintf($lang->users_browsing_forum_guests, $guestcount);
}

$invisonline = '';
if($mybb->user['invisible'] == 1)
{
// the user was counted as invisible user --> correct the inviscount
$inviscount -= 1;
}
if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1)
{
$invisonline = $lang->sprintf($lang->users_browsing_forum_invis, $inviscount);
}


$onlinesep = '';
if($invisonline != '' && $onlinemembers)
{
$onlinesep = $lang->comma;
}

$onlinesep2 = '';
if($invisonline != '' && $guestcount || $onlinemembers && $guestcount)
{
$onlinesep2 = $lang->comma;
}

eval("\$usersbrowsing = \"".$templates->get("forumdisplay_usersbrowsing")."\";");
}

// Do we have any forum rules to show for this forum?
$forumrules = '';
if($foruminfo['rulestype'] != 0 && $foruminfo['rules'])
{
if(!$foruminfo['rulestitle'])
{
$foruminfo['rulestitle'] = $lang->sprintf($lang->forum_rules, $foruminfo['name']);
}

$rules_parser = array(
"allow_html" => 1,
"allow_mycode" => 1,
"allow_smilies" => 1,
"allow_imgcode" => 1
);

$foruminfo['rules'] = $parser->parse_message($foruminfo['rules'], $rules_parser);
if($foruminfo['rulestype'] == 1 || $foruminfo['rulestype'] == 3)
{
eval("\$rules = \"".$templates->get("forumdisplay_rules")."\";");
}
else if($foruminfo['rulestype'] == 2)
{
eval("\$rules = \"".$templates->get("forumdisplay_rules_link")."\";");
}
}

$bgcolor = "trow1";

// Set here to fetch only approved topics (and then below for a moderator we change this).
$visibleonly = "AND visible='1'";
$tvisibleonly = "AND t.visible='1'";

// Check if the active user is a moderator and get the inline moderation tools.
if(is_moderator($fid))
{
eval("\$inlinemodcol = \"".$templates->get("forumdisplay_inlinemoderation_col")."\";");
$ismod = true;
$inlinecount = "0";
$inlinemod = '';
$inlinecookie = "inlinemod_forum".$fid;

if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true)
{
if(is_moderator($fid, "canviewunapprove") == true && is_moderator($fid, "canviewdeleted") == false)
{
$visibleonly = "AND visible IN (0,1)";
$tvisibleonly = "AND t.visible IN (0,1)";
}
elseif(is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == false)
{
$visibleonly = "AND visible IN (-1,1)";
$tvisibleonly = "AND t.visible IN (-1,1)";
}
else
{
$visibleonly = " AND visible IN (-1,0,1)";
$tvisibleonly = " AND t.visible IN (-1,0,1)";
}
}
}
else
{
$inlinemod = $inlinemodcol = '';
$ismod = false;
}

if(is_moderator($fid, "caneditposts") || $fpermissions['caneditposts'] == 1)
{
$can_edit_titles = 1;
}
else
{
$can_edit_titles = 0;
}

unset($rating);

// Pick out some sorting options.
// First, the date cut for the threads.
$datecut = 9999;
if(empty($mybb->input['datecut']))
{
// If the user manually set a date cut, use it.
if(!empty($mybb->user['daysprune']))
{
$datecut = $mybb->user['daysprune'];
}
else
{
// If the forum has a non-default date cut, use it.
if(!empty($foruminfo['defaultdatecut']))
{
$datecut = $foruminfo['defaultdatecut'];
}
}
}
// If there was a manual date cut override, use it.
else
{
$datecut = $mybb->get_input('datecut', MyBB::INPUT_INT);
}

$datecutsel[(int)$datecut] = ' selected="selected"';
if($datecut > 0 && $datecut != 9999)
{
$checkdate = TIME_NOW - ($datecut * 86400);
$datecutsql = "AND (lastpost >= '$checkdate' OR sticky = '1')";
$datecutsql2 = "AND (t.lastpost >= '$checkdate' OR t.sticky = '1')";
}
else
{
$datecutsql = '';
$datecutsql2 = '';
}

// Sort by thread prefix
$tprefix = $mybb->get_input('prefix', MyBB::INPUT_INT);
if($tprefix > 0)
{
$prefixsql = "AND prefix = {$tprefix}";
$prefixsql2 = "AND t.prefix = {$tprefix}";
}
else if($tprefix == -1)
{
$prefixsql = "AND prefix = 0";
$prefixsql2 = "AND t.prefix = 0";
}
else if($tprefix == -2)
{
$prefixsql = "AND prefix != 0";
$prefixsql2 = "AND t.prefix != 0";
}
else
{
$prefixsql = $prefixsql2 = '';
}

// Pick the sort order.
if(!isset($mybb->input['order']) && !empty($foruminfo['defaultsortorder']))
{
$mybb->input['order'] = $foruminfo['defaultsortorder'];
}
else
{
$mybb->input['order'] = $mybb->get_input('order');
}

$mybb->input['order'] = htmlspecialchars_uni($mybb->get_input('order'));

switch(my_strtolower($mybb->input['order']))
{
case "asc":
$sortordernow = "asc";
        $ordersel['asc'] = ' selected="selected"';
$oppsort = $lang->desc;
$oppsortnext = "desc";
break;
default:
        $sortordernow = "desc";
$ordersel['desc'] = ' selected="selected"';
        $oppsort = $lang->asc;
$oppsortnext = "asc";
break;
}

// Sort by which field?
if(!isset($mybb->input['sortby']) && !empty($foruminfo['defaultsortby']))
{
$mybb->input['sortby'] = $foruminfo['defaultsortby'];
}
else
{
$mybb->input['sortby'] = $mybb->get_input('sortby');
}

$t = 't.';
$sortfield2 = '';

$sortby = htmlspecialchars_uni($mybb->input['sortby']);

switch($mybb->input['sortby'])
{
case "subject":
$sortfield = "subject";
break;
case "replies":
$sortfield = "replies";
break;
case "views":
$sortfield = "views";
break;
case "starter":
$sortfield = "username";
break;
case "rating":
$t = "";
$sortfield = "averagerating";
$sortfield2 = ", t.totalratings DESC";
break;
case "started":
$sortfield = "dateline";
break;
default:
$sortby = "lastpost";
$sortfield = "lastpost";
$mybb->input['sortby'] = "lastpost";
break;
}

$sortsel['rating'] = ''; // Needs to be initialized in order to speed-up things. Fixes #2031
$sortsel[$mybb->input['sortby']] = ' selected="selected"';

// Pick the right string to join the sort URL
if($mybb->seo_support == true)
{
$string = "?";
}
else
{
$string = "&amp;";
}

// Are we viewing a specific page?
$mybb->input['page'] = $mybb->get_input('page', MyBB::INPUT_INT);
if($mybb->input['page'] > 1)
{
$sorturl = get_forum_link($fid, $mybb->input['page']).$string."datecut=$datecut&amp;prefix=$tprefix";
}
else
{
$sorturl = get_forum_link($fid).$string."datecut=$datecut&amp;prefix=$tprefix";
}

eval("\$orderarrow['$sortby'] = \"".$templates->get("forumdisplay_orderarrow")."\";");

$threadcount = 0;
$useronly = $tuseronly = "";
if(isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
{
$useronly = "AND uid={$mybb->user['uid']}";
$tuseronly = "AND t.uid={$mybb->user['uid']}";
}


// How many posts are there?
if(($datecut > 0 && $datecut != 9999) || isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
{
$query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $useronly $visibleonly $datecutsql $prefixsql");
$threadcount = $db->fetch_field($query, "threads");
}
else
{
$query = $db->simple_select("forums", "threads, unapprovedthreads, deletedthreads", "fid = '{$fid}'", array('limit' => 1));
$forum_threads = $db->fetch_array($query);
$threadcount = $forum_threads['threads'];
if($ismod == true)
{
$threadcount += $forum_threads['unapprovedthreads'] + $forum_threads['deletedthreads'];
}

// If we have 0 threads double check there aren't any "moved" threads
if($threadcount == 0)
{
$query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $useronly $visibleonly", array('limit' => 1));
$threadcount = $db->fetch_field($query, "threads");
}
}

// How many pages are there?
if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1)
{
$mybb->settings['threadsperpage'] = 20;
}

$perpage = $mybb->settings['threadsperpage'];

if($mybb->input['page'] > 0)
{
$page = $mybb->input['page'];
$start = ($page-1) * $perpage;
$pages = $threadcount / $perpage;
$pages = ceil($pages);
if($page > $pages || $page <= 0)
{
$start = 0;
$page = 1;
}
}
else
{
$start = 0;
$page = 1;
}

$end = $start + $perpage;
$lower = $start + 1;
$upper = $end;

if($upper > $threadcount)
{
$upper = $threadcount;
}

// Assemble page URL
if($mybb->input['sortby'] || $mybb->input['order'] || $mybb->input['datecut'] || $mybb->input['prefix']) // Ugly URL
{
$page_url = str_replace("{fid}", $fid, FORUM_URL_PAGED);

if($mybb->seo_support == true)
{
$q = "?";
$and = '';
}
else
{
$q = '';
$and = "&";
}

if((!empty($foruminfo['defaultsortby']) && $sortby != $foruminfo['defaultsortby']) || (empty($foruminfo['defaultsortby']) && $sortby != "lastpost"))
{
$page_url .= "{$q}{$and}sortby={$sortby}";
$q = '';
$and = "&";
}

if($sortordernow != "desc")
{
$page_url .= "{$q}{$and}order={$sortordernow}";
$q = '';
$and = "&";
}

if($datecut > 0 && $datecut != 9999)
{
$page_url .= "{$q}{$and}datecut={$datecut}";
$q = '';
$and = "&";
}

if($tprefix != 0)
{
$page_url .= "{$q}{$and}prefix={$tprefix}";
}
}
else
{
$page_url = str_replace("{fid}", $fid, FORUM_URL_PAGED);
}
$multipage = multipage($threadcount, $perpage, $page, $page_url);

if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0 && $fpermissions['canviewthreads'] != 0)
{
$lang->load("ratethread");

switch($db->type)
{
case "pgsql":
$ratingadd = "CASE WHEN t.numratings=0 THEN 0 ELSE t.totalratings/t.numratings::numeric END AS averagerating, ";
break;
default:
$ratingadd = "(t.totalratings/t.numratings) AS averagerating, ";
}

$lpbackground = "trow2";
eval("\$ratingcol = \"".$templates->get("forumdisplay_threadlist_rating")."\";");
eval("\$ratingsort = \"".$templates->get("forumdisplay_threadlist_sortrating")."\";");
$colspan = "7";
}
else
{
if($sortfield == "averagerating")
{
$t = "t.";
$sortfield = "lastpost";
}
$ratingadd = '';
$lpbackground = "trow1";
$colspan = "6";
}

if($ismod)
{
++$colspan;
}

// Get Announcements
$announcementlist = '';
if($has_announcements == true)
{
$limit = '';
$announcements = '';
if($mybb->settings['announcementlimit'])
{
$limit = "LIMIT 0, ".$mybb->settings['announcementlimit'];
}

$sql = build_parent_list($fid, "fid", "OR", $parentlist);
$time = TIME_NOW;
$query = $db->query("
SELECT a.*, u.username
FROM ".TABLE_PREFIX."announcements a
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=a.uid)
WHERE a.startdate<='$time' AND (a.enddate>='$time' OR a.enddate='0') AND ($sql OR fid='-1')
ORDER BY a.startdate DESC $limit
");

// See if this announcement has been read in our announcement array
$cookie = array();
if(isset($mybb->cookies['mybb']['announcements']))
{
$cookie = my_unserialize(stripslashes($mybb->cookies['mybb']['announcements']));
}

$announcementlist = '';
$bgcolor = alt_trow(true); // Reset the trow colors
while($announcement = $db->fetch_array($query))
{
if($announcement['startdate'] > $mybb->user['lastvisit'] && !$cookie[$announcement['aid']])
{
$new_class = ' class="subject_new"';
$folder = "newfolder";
}
else
{
$new_class = ' class="subject_old"';
$folder = "folder";
}

// Mmm, eat those announcement cookies if they're older than our last visit
if(isset($cookie[$announcement['aid']]) && $cookie[$announcement['aid']] < $mybb->user['lastvisit'])
{
unset($cookie[$announcement['aid']]);
}

$announcement['announcementlink'] = get_announcement_link($announcement['aid']);
$announcement['subject'] = $parser->parse_badwords($announcement['subject']);
$announcement['subject'] = htmlspecialchars_uni($announcement['subject']);
$postdate = my_date('relative', $announcement['startdate']);
$announcement['profilelink'] = build_profile_link($announcement['username'], $announcement['uid']);

if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0 && $fpermissions['canviewthreads'] != 0)
{
eval("\$rating = \"".$templates->get("forumdisplay_announcement_rating")."\";");
$lpbackground = "trow2";
}
else
{
$rating = '';
$lpbackground = "trow1";
}

if($ismod)
{
eval("\$modann = \"".$templates->get("forumdisplay_announcements_announcement_modbit")."\";");
}
else
{
$modann = '';
}

$plugins->run_hooks("forumdisplay_announcement");
eval("\$announcements .= \"".$templates->get("forumdisplay_announcements_announcement")."\";");
$bgcolor = alt_trow();
}

if($announcements)
{
eval("\$announcementlist = \"".$templates->get("forumdisplay_announcements")."\";");
$shownormalsep = true;
}

if(empty($cookie))
{
// Clean up cookie crumbs
my_setcookie('mybb[announcements]', 0, (TIME_NOW - (60*60*24*365)));
}
else if(!empty($cookie))
{
my_setcookie("mybb[announcements]", addslashes(my_serialize($cookie)), -1);
}
}
else
{
$announcementlist = '';
}

$tids = $threadcache = array();
$icon_cache = $cache->read("posticons");


$plugins->run_hooks("forumdisplay_get_threads");

// Start Getting Threads
$query = $db->query("
SELECT t.*, {$ratingadd}t.username AS threadusername, u.username
FROM ".TABLE_PREFIX."threads t
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
WHERE t.fid='$fid' $tuseronly $tvisibleonly $datecutsql2 $prefixsql2
ORDER BY t.sticky DESC, {$t}{$sortfield} $sortordernow $sortfield2
LIMIT $start, $perpage
");

$ratings = false;
$moved_threads = array();
while($thread = $db->fetch_array($query))
{
$threadcache[$thread['tid']] = $thread;

if($thread['numratings'] > 0 && $ratings == false)
{
$ratings = true; // Looks for ratings in the forum
}

// If this is a moved thread - set the tid for participation marking and thread read marking to that of the moved thread
if(substr($thread['closed'], 0, 5) == "moved")
{
$tid = substr($thread['closed'], 6);
if(!isset($tids[$tid]))
{
$moved_threads[$tid] = $thread['tid'];
$tids[$thread['tid']] = $tid;
}
}
// Otherwise - set it to the plain thread ID
else
{
$tids[$thread['tid']] = $thread['tid'];
if(isset($moved_threads[$thread['tid']]))
{
unset($moved_threads[$thread['tid']]);
}
}
}

if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0 && $mybb->user['uid'] && !empty($threadcache) && $ratings == true)
{
// Check if we've rated threads on this page
// Guests get the pleasure of not being ID'd, but will be checked when they try and rate
$imp = implode(",", array_keys($threadcache));
$query = $db->simple_select("threadratings", "tid, uid", "tid IN ({$imp}) AND uid = '{$mybb->user['uid']}'");

while($rating = $db->fetch_array($query))
{
$threadcache[$rating['tid']]['rated'] = 1;
}
}

// If user has moderation tools available, prepare the Select All feature
$selectall = '';
if(is_moderator($fid) && $threadcount > $perpage)
{
$lang->page_selected = $lang->sprintf($lang->page_selected, count($threadcache));
$lang->select_all = $lang->sprintf($lang->select_all, (int)$threadcount);
$lang->all_selected = $lang->sprintf($lang->all_selected, (int)$threadcount);
eval("\$selectall = \"".$templates->get("forumdisplay_inlinemoderation_selectall")."\";");
}

if(!empty($tids))
{
$tids = implode(",", $tids);
}

// Check participation by the current user in any of these threads - for 'dot' folder icons
if($mybb->settings['dotfolders'] != 0 && $mybb->user['uid'] && !empty($threadcache))
{
$query = $db->simple_select("posts", "DISTINCT tid,uid", "uid='{$mybb->user['uid']}' AND tid IN ({$tids}) {$visibleonly}");
while($post = $db->fetch_array($query))
{
if(!empty($moved_threads[$post['tid']]))
{
$post['tid'] = $moved_threads[$post['tid']];
}
if($threadcache[$post['tid']])
{
$threadcache[$post['tid']]['doticon'] = 1;
}
}
}

// Read threads
if($mybb->user['uid'] && $mybb->settings['threadreadcut'] > 0 && !empty($threadcache))
{
$query = $db->simple_select("threadsread", "*", "uid='{$mybb->user['uid']}' AND tid IN ({$tids})");
while($readthread = $db->fetch_array($query))
{
if(!empty($moved_threads[$readthread['tid']]))
{
$readthread['tid'] = $moved_threads[$readthread['tid']];
}
if($threadcache[$readthread['tid']])
{
$threadcache[$readthread['tid']]['lastread'] = $readthread['dateline'];
}
}
}

if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'])
{
$query = $db->simple_select("forumsread", "dateline", "fid='{$fid}' AND uid='{$mybb->user['uid']}'");
$forum_read = $db->fetch_field($query, "dateline");

$read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
if($forum_read == 0 || $forum_read < $read_cutoff)
{
$forum_read = $read_cutoff;
}
}
else
{
$forum_read = my_get_array_cookie("forumread", $fid);

if(isset($mybb->cookies['mybb']['readallforums']) && !$forum_read)
{
$forum_read = $mybb->cookies['mybb']['lastvisit'];
}
}

$unreadpost = 0;
$threads = '';
if(!empty($threadcache) && is_array($threadcache))
{
if(!$mybb->settings['maxmultipagelinks'])
{
$mybb->settings['maxmultipagelinks'] = 5;
}

if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1)
{
$mybb->settings['postsperpage'] = 20;
}

foreach($threadcache as $thread)
{
$plugins->run_hooks("forumdisplay_thread");

$moved = explode("|", $thread['closed']);

if($thread['visible'] == 0)
{
$bgcolor = "trow_shaded";
}
elseif($thread['visible'] == -1)
{
$bgcolor = "trow_shaded trow_deleted";
}
else
{
$bgcolor = alt_trow();
}

if($thread['sticky'] == 1)
{
$thread_type_class = " forumdisplay_sticky";
}
else
{
$thread_type_class = " forumdisplay_regular";
}

$folder = '';
$prefix = '';

$thread['author'] = $thread['uid'];
if(!$thread['username'])
{
$thread['username'] = $thread['threadusername'];
$thread['profilelink'] = $thread['threadusername'];
}
else
{
$thread['profilelink'] = build_profile_link($thread['username'], $thread['uid']);
}

// If this thread has a prefix, insert a space between prefix and subject
$thread['threadprefix'] = $threadprefix = '';
if($thread['prefix'] != 0)
{
$threadprefix = build_prefixes($thread['prefix']);
if(!empty($threadprefix))
{
$thread['threadprefix'] = $threadprefix['displaystyle'].'&nbsp;';
}
}

$thread['subject'] = $parser->parse_badwords($thread['subject']);
$thread['subject'] = htmlspecialchars_uni($thread['subject']);

if($thread['icon'] > 0 && $icon_cache[$thread['icon']])
{
$icon = $icon_cache[$thread['icon']];
$icon['path'] = str_replace("{theme}", $theme['imgdir'], $icon['path']);
$icon['path'] = htmlspecialchars_uni($icon['path']);
$icon['name'] = htmlspecialchars_uni($icon['name']);
eval("\$icon = \"".$templates->get("forumdisplay_thread_icon")."\";");
}
else
{
$icon = "&nbsp;";
}

$prefix = '';
if($thread['poll'])
{
$prefix = $lang->poll_prefix;
}

if($thread['sticky'] == "1" && !isset($donestickysep))
{
eval("\$threads .= \"".$templates->get("forumdisplay_sticky_sep")."\";");
$shownormalsep = true;
$donestickysep = true;
}
else if($thread['sticky'] == 0 && !empty($shownormalsep))
{
eval("\$threads .= \"".$templates->get("forumdisplay_threads_sep")."\";");
$shownormalsep = false;
}

$rating = '';
if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0)
{
if($moved[0] == "moved")
{
eval("\$rating = \"".$templates->get("forumdisplay_thread_rating_moved")."\";");
}
else
{
$thread['averagerating'] = (float)round($thread['averagerating'], 2);
$thread['width'] = (int)round($thread['averagerating'])*20;
$thread['numratings'] = (int)$thread['numratings'];

$not_rated = '';
if(!isset($thread['rated']) || empty($thread['rated']))
{
$not_rated = ' star_rating_notrated';
}

$ratingvotesav = $lang->sprintf($lang->rating_votes_average, $thread['numratings'], $thread['averagerating']);
eval("\$rating = \"".$templates->get("forumdisplay_thread_rating")."\";");
}
}

$thread['pages'] = 0;
$thread['multipage'] = '';
$threadpages = '';
$morelink = '';
$thread['posts'] = $thread['replies'] + 1;

if($thread['unapprovedposts'] > 0 && $ismod)
{
$thread['posts'] += $thread['unapprovedposts'] + $thread['deletedposts'];
}

if($thread['posts'] > $mybb->settings['postsperpage'])
{
$thread['pages'] = $thread['posts'] / $mybb->settings['postsperpage'];
$thread['pages'] = ceil($thread['pages']);

if($thread['pages'] > $mybb->settings['maxmultipagelinks'])
{
$pagesstop = $mybb->settings['maxmultipagelinks'] - 1;
$page_link = get_thread_link($thread['tid'], $thread['pages']);
eval("\$morelink = \"".$templates->get("forumdisplay_thread_multipage_more")."\";");
}
else
{
$pagesstop = $thread['pages'];
}

for($i = 1; $i <= $pagesstop; ++$i)
{
$page_link = get_thread_link($thread['tid'], $i);
eval("\$threadpages .= \"".$templates->get("forumdisplay_thread_multipage_page")."\";");
}

eval("\$thread['multipage'] = \"".$templates->get("forumdisplay_thread_multipage")."\";");
}
else
{
$threadpages = '';
$morelink = '';
$thread['multipage'] = '';
}

if($ismod)
{
if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|{$thread['tid']}|"))
{
$inlinecheck = "checked=\"checked\"";
++$inlinecount;
}
else
{
$inlinecheck = '';
}

$multitid = $thread['tid'];
eval("\$modbit = \"".$templates->get("forumdisplay_thread_modbit")."\";");
}
else
{
$modbit = '';
}

if($moved[0] == "moved")
{
$prefix = $lang->moved_prefix;
$thread['tid'] = $moved[1];
$thread['replies'] = "-";
$thread['views'] = "-";
}

$thread['threadlink'] = get_thread_link($thread['tid']);
$thread['lastpostlink'] = get_thread_link($thread['tid'], 0, "lastpost");

// Determine the folder
$folder = '';
$folder_label = '';

if(isset($thread['doticon']))
{
$folder = "dot_";
$folder_label .= $lang->icon_dot;
}

$gotounread = '';
$isnew = 0;
$donenew = 0;

if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read)
{
if(!empty($thread['lastread']))
{
$last_read = $thread['lastread'];
}
else
{
$last_read = $read_cutoff;
}
}
else
{
$last_read = my_get_array_cookie("threadread", $thread['tid']);
}

if($forum_read > $last_read)
{
$last_read = $forum_read;
}

if($thread['lastpost'] > $last_read && $moved[0] != "moved")
{
$folder .= "new";
$folder_label .= $lang->icon_new;
$new_class = "subject_new";
$thread['newpostlink'] = get_thread_link($thread['tid'], 0, "newpost");
eval("\$gotounread = \"".$templates->get("forumdisplay_thread_gotounread")."\";");
$unreadpost = 1;
}
else
{
$folder_label .= $lang->icon_no_new;
$new_class = "subject_old";
}

if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews'])
{
$folder .= "hot";
$folder_label .= $lang->icon_hot;
}

if($thread['closed'] == 1)
{
$folder .= "lock";
$folder_label .= $lang->icon_lock;
}

if($moved[0] == "moved")
{
$folder = "move";
$gotounread = '';
}

$folder .= "folder";

$inline_edit_tid = $thread['tid'];

// If this user is the author of the thread and it is not closed or they are a moderator, they can edit
$inline_edit_class = '';
if(($thread['uid'] == $mybb->user['uid'] && $thread['closed'] != 1 && $mybb->user['uid'] != 0 && $can_edit_titles == 1) || $ismod == true)
{
$inline_edit_class = "subject_editable";
}

$lastposter = $thread['lastposter'];
$lastposteruid = $thread['lastposteruid'];
$lastpostdate = my_date('relative', $thread['lastpost']);

// Don't link to guest's profiles (they have no profile).
if($lastposteruid == 0)
{
$lastposterlink = $lastposter;
}
else
{
$lastposterlink = build_profile_link($lastposter, $lastposteruid);
}

$thread['replies'] = my_number_format($thread['replies']);
$thread['views'] = my_number_format($thread['views']);

// Threads and posts requiring moderation
if($thread['unapprovedposts'] > 0 && is_moderator($fid, "canviewunapprove"))
{
if($thread['unapprovedposts'] > 1)
{
$unapproved_posts_count = $lang->sprintf($lang->thread_unapproved_posts_count, $thread['unapprovedposts']);
}
else
{
$unapproved_posts_count = $lang->sprintf($lang->thread_unapproved_post_count, 1);
}

$thread['unapprovedposts'] = my_number_format($thread['unapprovedposts']);
eval("\$unapproved_posts = \"".$templates->get("forumdisplay_thread_unapproved_posts")."\";");
}
else
{
$unapproved_posts = '';
}

// If this thread has 1 or more attachments show the papperclip
if($mybb->settings['enableattachments'] == 1 && $thread['attachmentcount'] > 0)
{
if($thread['attachmentcount'] > 1)
{
$attachment_count = $lang->sprintf($lang->attachment_count_multiple, $thread['attachmentcount']);
}
else
{
$attachment_count = $lang->attachment_count;
}

eval("\$attachment_count = \"".$templates->get("forumdisplay_thread_attachment_count")."\";");
}
else
{
$attachment_count = '';
}

$plugins->run_hooks("forumdisplay_thread_end");

eval("\$threads .= \"".$templates->get("forumdisplay_thread")."\";");
}

$customthreadtools = $standardthreadtools = '';
if($ismod)
{
if(is_moderator($fid, "canusecustomtools") && $has_modtools == true)
{
$gids = explode(',', $mybb->user['additionalgroups']);
$gids[] = $mybb->user['usergroup'];
$gids = array_filter(array_unique($gids));

$gidswhere = '';
switch($db->type)
{
case "pgsql":
case "sqlite":
foreach($gids as $gid)
{
$gid = (int)$gid;
$gidswhere .= " OR ','||groups||',' LIKE '%,{$gid},%'";
}
$query = $db->simple_select("modtools", 'tid, name', "(','||forums||',' LIKE '%,$fid,%' OR ','||forums||',' LIKE '%,-1,%' OR forums='') AND (groups='' OR ','||groups||',' LIKE '%,-1,%'{$gidswhere}) AND type = 't'");
break;
default:
foreach($gids as $gid)
{
$gid = (int)$gid;
$gidswhere .= " OR CONCAT(',',groups,',') LIKE '%,{$gid},%'";
}
$query = $db->simple_select("modtools", 'tid, name', "(CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums='') AND (groups='' OR CONCAT(',',groups,',') LIKE '%,-1,%'{$gidswhere}) AND type = 't'");
break;
}

while($tool = $db->fetch_array($query))
{
eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";");
}

if($customthreadtools)
{
eval("\$customthreadtools = \"".$templates->get("forumdisplay_inlinemoderation_custom")."\";");
}
}

$inlinemodopenclose = $inlinemodstickunstick = $inlinemodsoftdelete = $inlinemodrestore = $inlinemoddelete = $inlinemodmanage = $inlinemodapproveunapprove = '';

if(is_moderator($fid, "canopenclosethreads"))
{
eval("\$inlinemodopenclose = \"".$templates->get("forumdisplay_inlinemoderation_openclose")."\";");
}

if(is_moderator($fid, "canstickunstickthreads"))
{
eval("\$inlinemodstickunstick = \"".$templates->get("forumdisplay_inlinemoderation_stickunstick")."\";");
}

if(is_moderator($fid, "cansoftdeletethreads"))
{
eval("\$inlinemodsoftdelete = \"".$templates->get("forumdisplay_inlinemoderation_softdelete")."\";");
}

if(is_moderator($fid, "canrestorethreads"))
{
eval("\$inlinemodrestore = \"".$templates->get("forumdisplay_inlinemoderation_restore")."\";");
}

if(is_moderator($fid, "candeletethreads"))
{
eval("\$inlinemoddelete = \"".$templates->get("forumdisplay_inlinemoderation_delete")."\";");
}

if(is_moderator($fid, "canmanagethreads"))
{
eval("\$inlinemodmanage = \"".$templates->get("forumdisplay_inlinemoderation_manage")."\";");
}

if(is_moderator($fid, "canapproveunapproveposts"))
{
eval("\$inlinemodapproveunapprove = \"".$templates->get("forumdisplay_inlinemoderation_approveunapprove")."\";");
}

if(!empty($inlinemodopenclose) || !empty($inlinemodstickunstick) || !empty($inlinemodsoftdelete) || !empty($inlinemodrestore) || !empty($inlinemoddelete) || !empty($inlinemodmanage) || !empty($inlinemodapproveunapprove))
{
eval("\$standardthreadtools = \"".$templates->get("forumdisplay_inlinemoderation_standard")."\";");
}

// Only show inline mod menu if there's options to show
if(!empty($standardthreadtools) || !empty($customthreadtools))
{
eval("\$inlinemod = \"".$templates->get("forumdisplay_inlinemoderation")."\";");
}
}
}

// If there are no unread threads in this forum and no unread child forums - mark it as read
require_once MYBB_ROOT."inc/functions_indicators.php";

$unread_threads = fetch_unread_count($fid);
if($unread_threads !== false && $unread_threads == 0 && empty($unread_forums))
{
mark_forum_read($fid);
}

// Subscription status
$add_remove_subscription = 'add';
$add_remove_subscription_text = $lang->subscribe_forum;

if($mybb->user['uid'])
{
$query = $db->simple_select("forumsubscriptions", "fid", "fid='".$fid."' AND uid='{$mybb->user['uid']}'", array('limit' => 1));

if($db->fetch_field($query, 'fid'))
{
$add_remove_subscription = 'remove';
$add_remove_subscription_text = $lang->unsubscribe_forum;
}
}

$inline_edit_js = $clearstoredpass = '';

// Is this a real forum with threads?
if($foruminfo['type'] != "c")
{
if($fpermissions['canviewthreads'] != 1)
{
eval("\$threads = \"".$templates->get("forumdisplay_nopermission")."\";");
}

if(!$threadcount && $fpermissions['canviewthreads'] == 1)
{
eval("\$threads = \"".$templates->get("forumdisplay_nothreads")."\";");
}

$clearstoredpass = '';
if($foruminfo['password'] != '')
{
eval("\$clearstoredpass = \"".$templates->get("forumdisplay_threadlist_clearpass")."\";");
}

$post_code_string = '';
if($mybb->user['uid'])
{
$post_code_string = "&amp;my_post_key=".$mybb->post_code;
}

$prefixselect = build_forum_prefix_select($fid, $tprefix);

$lang->rss_discovery_forum = $lang->sprintf($lang->rss_discovery_forum, htmlspecialchars_uni(strip_tags($foruminfo['name'])));
eval("\$rssdiscovery = \"".$templates->get("forumdisplay_rssdiscovery")."\";");
eval("\$threadslist = \"".$templates->get("forumdisplay_threadlist")."\";");
}
else
{
$rssdiscovery = '';
$threadslist = '';

if(empty($forums))
{
error($lang->error_containsnoforums);
}
}

$plugins->run_hooks("forumdisplay_end");

$foruminfo['name'] = strip_tags($foruminfo['name']);

eval("\$forums = \"".$templates->get("forumdisplay")."\";");
output_page($forums);
Zitieren


Möglicherweise verwandte Themen…
Thema Verfasser Antworten Ansichten Letzter Beitrag
  Unterforen auf dem Index verbergen hkkp 12 2.777 15.07.2015, 13:11
Letzter Beitrag: hkkp