Zeile 19 | Zeile 19 |
---|
$templatelist .= ",forumdisplay_announcements_announcement,forumdisplay_announcements,forumdisplay_threads_sep,forumbit_depth3_statusicon,forumbit_depth3,forumdisplay_sticky_sep,forumdisplay_thread_attachment_count,forumdisplay_rssdiscovery,forumbit_moderators_group"; $templatelist .= ",forumdisplay_inlinemoderation_openclose,forumdisplay_inlinemoderation_stickunstick,forumdisplay_inlinemoderation_softdelete,forumdisplay_inlinemoderation_restore,forumdisplay_inlinemoderation_delete,forumdisplay_inlinemoderation_manage,forumdisplay_nopermission"; $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_thread_icon,forumdisplay_rules";
|
$templatelist .= ",forumdisplay_announcements_announcement,forumdisplay_announcements,forumdisplay_threads_sep,forumbit_depth3_statusicon,forumbit_depth3,forumdisplay_sticky_sep,forumdisplay_thread_attachment_count,forumdisplay_rssdiscovery,forumbit_moderators_group"; $templatelist .= ",forumdisplay_inlinemoderation_openclose,forumdisplay_inlinemoderation_stickunstick,forumdisplay_inlinemoderation_softdelete,forumdisplay_inlinemoderation_restore,forumdisplay_inlinemoderation_delete,forumdisplay_inlinemoderation_manage,forumdisplay_nopermission"; $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_thread_icon,forumdisplay_rules";
|
$templatelist .= ",forumdisplay_thread_deleted,forumdisplay_announcements_announcement_modbit,forumbit_depth2_forum_viewers,forumdisplay_threadlist_sortrating,forumdisplay_inlinemoderation_custom,forumdisplay_announcement_rating,forumdisplay_inlinemoderation_approveunapprove";
| $templatelist .= ",forumdisplay_thread_deleted,forumdisplay_announcements_announcement_modbit,forumbit_depth2_forum_viewers,forumdisplay_threadlist_sortrating,forumdisplay_inlinemoderation_custom,forumdisplay_announcement_rating,forumdisplay_inlinemoderation_approveunapprove,forumdisplay_threadlist_subscription";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
| require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
|
Zeile 282 | Zeile 282 |
---|
$inviscount = 0; $onlinemembers = ''; $doneusers = array();
|
$inviscount = 0; $onlinemembers = ''; $doneusers = array();
|
| $query = $db->simple_select("sessions", "COUNT(DISTINCT ip) AS guestcount", "uid = 0 AND time > $timecut AND location1 = $fid AND nopermission != 1"); $guestcount = $db->fetch_field($query, 'guestcount');
|
$query = $db->query("
|
$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
| 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.uid != 0 AND s.time > $timecut AND location1 = $fid AND nopermission != 1
|
ORDER BY u.username ASC, s.time DESC ");
while($user = $db->fetch_array($query)) {
|
ORDER BY u.username ASC, s.time DESC ");
while($user = $db->fetch_array($query)) {
|
if($user['uid'] == 0)
| if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time'])
|
{
|
{
|
++$guestcount; } else { if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time'])
| $doneusers[$user['uid']] = $user['time']; ++$membercount; if($user['invisible'] == 1)
|
{
|
{
|
$doneusers[$user['uid']] = $user['time']; ++$membercount; if($user['invisible'] == 1) { $invisiblemark = "*"; ++$inviscount; } else { $invisiblemark = ''; }
| $invisiblemark = "*"; ++$inviscount; } else { $invisiblemark = ''; }
|
|
|
if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid']) { $user['username'] = format_name(htmlspecialchars_uni($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; } }
| if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid']) { $user['username'] = format_name(htmlspecialchars_uni($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; }
|
} }
| } }
|
Zeile 387 | Zeile 385 |
---|
$bgcolor = "trow1";
// Set here to fetch only approved/deleted topics (and then below for a moderator we change this).
|
$bgcolor = "trow1";
// Set here to fetch only approved/deleted topics (and then below for a moderator we change this).
|
| $visible_states = array("1");
|
if($fpermissions['canviewdeletionnotice'] != 0) {
|
if($fpermissions['canviewdeletionnotice'] != 0) {
|
$visibleonly = "AND visible IN (-1,1)"; $tvisibleonly = "AND t.visible IN (-1,1)"; } else { $visibleonly = "AND visible='1'"; $tvisibleonly = "AND t.visible='1'";
| $visible_states[] = "-1";
|
}
// Check if the active user is a moderator and get the inline moderation tools.
| }
// Check if the active user is a moderator and get the inline moderation tools.
|
Zeile 407 | Zeile 401 |
---|
$inlinemod = ''; $inlinecookie = "inlinemod_forum".$fid;
|
$inlinemod = ''; $inlinecookie = "inlinemod_forum".$fid;
|
if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true)
| if(is_moderator($fid, "canviewdeleted") == 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)"; }
| $visible_states[] = "-1";
|
}
|
}
|
}
| if(is_moderator($fid, "canviewunapprove") == true) { $visible_states[] = "0"; } }
|
else
|
else
|
{
| {
|
$inlinemod = $inlinemodcol = ''; $ismod = false; }
|
$inlinemod = $inlinemodcol = ''; $ismod = false; }
|
| $visible_condition = "visible IN (".implode(',', array_unique($visible_states)).")"; $visibleonly = "AND ".$visible_condition;
// Allow viewing own unapproved threads for logged in users if($mybb->user['uid'] && $mybb->settings['showownunapproved']) { $visible_condition .= " OR (t.visible=0 AND t.uid=".(int)$mybb->user['uid'].")"; }
$tvisibleonly = "AND (t.".$visible_condition.")";
|
if(is_moderator($fid, "caneditposts") || $fpermissions['caneditposts'] == 1) {
| if(is_moderator($fid, "caneditposts") || $fpermissions['caneditposts'] == 1) {
|
Zeile 597 | Zeile 592 |
---|
else { $sorturl = get_forum_link($fid).$string."datecut=$datecut&prefix=$tprefix";
|
else { $sorturl = get_forum_link($fid).$string."datecut=$datecut&prefix=$tprefix";
|
}
eval("\$orderarrow['$sortby'] = \"".$templates->get("forumdisplay_orderarrow")."\";");
| }
eval("\$orderarrow['$sortby'] = \"".$templates->get("forumdisplay_orderarrow")."\";");
|
$threadcount = 0; $useronly = $tuseronly = ""; if(isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
| $threadcount = 0; $useronly = $tuseronly = ""; if(isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
|
Zeile 611 | Zeile 606 |
---|
if($fpermissions['canviewthreads'] != 0) {
|
if($fpermissions['canviewthreads'] != 0) {
|
// 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 threads are there? $query = $db->simple_select("threads t", "COUNT(tid) AS threads", "fid = '$fid' $tuseronly $tvisibleonly $datecutsql2 $prefixsql2"); $threadcount = $db->fetch_field($query, "threads");
|
}
// How many pages are there?
| }
// How many pages are there?
|
Zeile 669 | Zeile 644 |
---|
if($upper > $threadcount) { $upper = $threadcount;
|
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)
|
// 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 = '';
|
$q = "?"; $and = '';
|
}
| }
|
else
|
else
|
{ $q = ''; $and = "&"; }
| { $q = ''; $and = "&"; }
|
if((!empty($foruminfo['defaultsortby']) && $sortby != $foruminfo['defaultsortby']) || (empty($foruminfo['defaultsortby']) && $sortby != "lastpost"))
|
if((!empty($foruminfo['defaultsortby']) && $sortby != $foruminfo['defaultsortby']) || (empty($foruminfo['defaultsortby']) && $sortby != "lastpost"))
|
{
| {
|
$page_url .= "{$q}{$and}sortby={$sortby}";
|
$page_url .= "{$q}{$and}sortby={$sortby}";
|
$q = ''; $and = "&"; }
| $q = ''; $and = "&"; }
|
if($sortordernow != "desc") {
| if($sortordernow != "desc") {
|
Zeile 702 | Zeile 677 |
---|
}
if($datecut > 0 && $datecut != 9999)
|
}
if($datecut > 0 && $datecut != 9999)
|
{
| {
|
$page_url .= "{$q}{$and}datecut={$datecut}"; $q = ''; $and = "&";
|
$page_url .= "{$q}{$and}datecut={$datecut}"; $q = ''; $and = "&";
|
}
| }
|
if($tprefix != 0) { $page_url .= "{$q}{$and}prefix={$tprefix}";
| if($tprefix != 0) { $page_url .= "{$q}{$and}prefix={$tprefix}";
|
Zeile 718 | Zeile 693 |
---|
$page_url = str_replace("{fid}", $fid, FORUM_URL_PAGED); } $multipage = multipage($threadcount, $perpage, $page, $page_url);
|
$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");
| if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0 && $fpermissions['canviewthreads'] != 0) { $lang->load("ratethread");
|
Zeile 752 | Zeile 727 |
---|
if($ismod) { ++$colspan;
|
if($ismod) { ++$colspan;
|
}
| }
|
// Get Announcements $announcementlist = ''; if($has_announcements == true)
| // Get Announcements $announcementlist = ''; if($has_announcements == true)
|
Zeile 807 | Zeile 782 |
---|
$announcement['subject'] = $parser->parse_badwords($announcement['subject']); $announcement['subject'] = htmlspecialchars_uni($announcement['subject']); $postdate = my_date('relative', $announcement['startdate']);
|
$announcement['subject'] = $parser->parse_badwords($announcement['subject']); $announcement['subject'] = htmlspecialchars_uni($announcement['subject']); $postdate = my_date('relative', $announcement['startdate']);
|
|
|
$announcement['username'] = htmlspecialchars_uni($announcement['username']);
$announcement['profilelink'] = build_profile_link($announcement['username'], $announcement['uid']);
| $announcement['username'] = htmlspecialchars_uni($announcement['username']);
$announcement['profilelink'] = build_profile_link($announcement['username'], $announcement['uid']);
|
Zeile 816 | Zeile 791 |
---|
{ eval("\$rating = \"".$templates->get("forumdisplay_announcement_rating")."\";"); $lpbackground = "trow2";
|
{ eval("\$rating = \"".$templates->get("forumdisplay_announcement_rating")."\";"); $lpbackground = "trow2";
|
}
| }
|
else { $rating = '';
| else { $rating = '';
|
Zeile 824 | Zeile 799 |
---|
}
if($ismod)
|
}
if($ismod)
|
{
| {
|
eval("\$modann = \"".$templates->get("forumdisplay_announcements_announcement_modbit")."\";");
|
eval("\$modann = \"".$templates->get("forumdisplay_announcements_announcement_modbit")."\";");
|
}
| }
|
else { $modann = '';
| else { $modann = '';
|
Zeile 835 | Zeile 810 |
---|
$plugins->run_hooks("forumdisplay_announcement"); eval("\$announcements .= \"".$templates->get("forumdisplay_announcements_announcement")."\";"); $bgcolor = alt_trow();
|
$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($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)));
|
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 if(!empty($cookie)) { my_setcookie("mybb[announcements]", addslashes(my_serialize($cookie)), -1);
|
Zeile 860 | Zeile 835 |
---|
$tids = $threadcache = array(); $icon_cache = $cache->read("posticons");
|
$tids = $threadcache = array(); $icon_cache = $cache->read("posticons");
|
|
|
if($fpermissions['canviewthreads'] != 0) { $plugins->run_hooks("forumdisplay_get_threads");
| if($fpermissions['canviewthreads'] != 0) { $plugins->run_hooks("forumdisplay_get_threads");
|
Zeile 894 | Zeile 869 |
---|
{ $moved_threads[$tid] = $thread['tid']; $tids[$thread['tid']] = $tid;
|
{ $moved_threads[$tid] = $thread['tid']; $tids[$thread['tid']] = $tid;
|
} }
| } }
|
// Otherwise - set it to the plain thread ID else {
| // Otherwise - set it to the plain thread ID else {
|
Zeile 906 | Zeile 881 |
---|
} } }
|
} } }
|
| $args = array( 'threadcache' => &$threadcache, 'tids' => &$tids );
$plugins->run_hooks("forumdisplay_before_thread", $args);
|
if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0 && $mybb->user['uid'] && !empty($threadcache) && $ratings == true) {
| if($mybb->settings['allowthreadratings'] != 0 && $foruminfo['allowtratings'] != 0 && $mybb->user['uid'] && !empty($threadcache) && $ratings == true) {
|
Zeile 913 | Zeile 895 |
---|
// 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']}'");
|
// 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;
| while($rating = $db->fetch_array($query)) { $threadcache[$rating['tid']]['rated'] = 1;
|
Zeile 949 | Zeile 931 |
---|
if($threadcache[$post['tid']]) { $threadcache[$post['tid']]['doticon'] = 1;
|
if($threadcache[$post['tid']]) { $threadcache[$post['tid']]['doticon'] = 1;
|
}
| }
|
} }
| } }
|
Zeile 966 | Zeile 948 |
---|
if($threadcache[$readthread['tid']]) { $threadcache[$readthread['tid']]['lastread'] = $readthread['dateline'];
|
if($threadcache[$readthread['tid']]) { $threadcache[$readthread['tid']]['lastread'] = $readthread['dateline'];
|
} }
| } }
|
}
if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'])
| }
if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'])
|
Zeile 1038 | Zeile 1020 |
---|
$thread['author'] = $thread['uid']; if(!$thread['username'])
|
$thread['author'] = $thread['uid']; if(!$thread['username'])
|
{ $thread['username'] = $thread['profilelink'] = htmlspecialchars_uni($thread['threadusername']);
| { if(!$thread['threadusername']) { $thread['username'] = $thread['profilelink'] = htmlspecialchars_uni($lang->guest); } else { $thread['username'] = $thread['profilelink'] = htmlspecialchars_uni($thread['threadusername']); }
|
} else
|
} else
|
{
| {
|
$thread['username'] = htmlspecialchars_uni($thread['username']); $thread['profilelink'] = build_profile_link($thread['username'], $thread['uid']); }
| $thread['username'] = htmlspecialchars_uni($thread['username']); $thread['profilelink'] = build_profile_link($thread['username'], $thread['uid']); }
|
Zeile 1055 | Zeile 1044 |
---|
if(!empty($threadprefix)) { $thread['threadprefix'] = $threadprefix['displaystyle'].' ';
|
if(!empty($threadprefix)) { $thread['threadprefix'] = $threadprefix['displaystyle'].' ';
|
} }
| } }
|
$thread['subject'] = $parser->parse_badwords($thread['subject']); $thread['subject'] = htmlspecialchars_uni($thread['subject']);
| $thread['subject'] = $parser->parse_badwords($thread['subject']); $thread['subject'] = htmlspecialchars_uni($thread['subject']);
|
Zeile 1110 | Zeile 1099 |
---|
{ $not_rated = ' star_rating_notrated'; }
|
{ $not_rated = ' star_rating_notrated'; }
|
|
|
$ratingvotesav = $lang->sprintf($lang->rating_votes_average, $thread['numratings'], $thread['averagerating']); eval("\$rating = \"".$templates->get("forumdisplay_thread_rating")."\";");
|
$ratingvotesav = $lang->sprintf($lang->rating_votes_average, $thread['numratings'], $thread['averagerating']); eval("\$rating = \"".$templates->get("forumdisplay_thread_rating")."\";");
|
}
| }
|
}
$thread['pages'] = 0;
| }
$thread['pages'] = 0;
|
Zeile 1121 | Zeile 1110 |
---|
$threadpages = ''; $morelink = ''; $thread['posts'] = $thread['replies'] + 1;
|
$threadpages = ''; $morelink = ''; $thread['posts'] = $thread['replies'] + 1;
|
if($thread['unapprovedposts'] > 0 && $ismod)
| if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true) { if(is_moderator($fid, "canviewdeleted") == true) { $thread['posts'] += $thread['deletedposts']; } if(is_moderator($fid, "canviewunapprove") == true) { $thread['posts'] += $thread['unapprovedposts']; } } elseif($fpermissions['canviewdeletionnotice'] != 0)
|
{
|
{
|
$thread['posts'] += $thread['unapprovedposts'] + $thread['deletedposts'];
| $thread['posts'] += $thread['deletedposts'];
|
}
if($thread['posts'] > $mybb->settings['postsperpage'])
| }
if($thread['posts'] > $mybb->settings['postsperpage'])
|
Zeile 1147 | Zeile 1146 |
---|
{ $page_link = get_thread_link($thread['tid'], $i); eval("\$threadpages .= \"".$templates->get("forumdisplay_thread_multipage_page")."\";");
|
{ $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
| eval("\$thread['multipage'] = \"".$templates->get("forumdisplay_thread_multipage")."\";"); } else
|
Zeile 1160 | Zeile 1159 |
---|
if($ismod) {
|
if($ismod) {
|
if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|{$thread['tid']}|"))
| if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|{$thread['tid']}|") !== false)
|
{ $inlinecheck = "checked=\"checked\""; ++$inlinecount;
| { $inlinecheck = "checked=\"checked\""; ++$inlinecount;
|
Zeile 1184 | Zeile 1183 |
---|
$thread['tid'] = $moved[1]; $thread['replies'] = "-"; $thread['views'] = "-";
|
$thread['tid'] = $moved[1]; $thread['replies'] = "-"; $thread['views'] = "-";
|
}
| }
|
$thread['threadlink'] = get_thread_link($thread['tid']); $thread['lastpostlink'] = get_thread_link($thread['tid'], 0, "lastpost");
| $thread['threadlink'] = get_thread_link($thread['tid']); $thread['lastpostlink'] = get_thread_link($thread['tid'], 0, "lastpost");
|
Zeile 1202 | Zeile 1201 |
---|
$gotounread = ''; $isnew = 0; $donenew = 0;
|
$gotounread = ''; $isnew = 0; $donenew = 0;
|
|
|
if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read) { if(!empty($thread['lastread']))
| if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read) { if(!empty($thread['lastread']))
|
Zeile 1220 | Zeile 1219 |
---|
}
if($forum_read > $last_read)
|
}
if($forum_read > $last_read)
|
{
| {
|
$last_read = $forum_read;
|
$last_read = $forum_read;
|
}
| }
|
if($thread['lastpost'] > $last_read && $moved[0] != "moved") {
| if($thread['lastpost'] > $last_read && $moved[0] != "moved") {
|
Zeile 1232 | Zeile 1231 |
---|
$thread['newpostlink'] = get_thread_link($thread['tid'], 0, "newpost"); eval("\$gotounread = \"".$templates->get("forumdisplay_thread_gotounread")."\";"); $unreadpost = 1;
|
$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";
|
else { $folder_label .= $lang->icon_no_new; $new_class = "subject_old";
|
}
| }
|
if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews'])
|
if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews'])
|
{
| {
|
$folder .= "hot"; $folder_label .= $lang->icon_hot;
|
$folder .= "hot"; $folder_label .= $lang->icon_hot;
|
}
| }
|
if($thread['closed'] == 1)
|
if($thread['closed'] == 1)
|
{ $folder .= "lock"; $folder_label .= $lang->icon_lock; }
| { $folder .= "close"; $folder_label .= $lang->icon_close; }
|
if($moved[0] == "moved") { $folder = "move"; $gotounread = '';
|
if($moved[0] == "moved") { $folder = "move"; $gotounread = '';
|
}
$folder .= "folder";
| }
$folder .= "folder";
|
$inline_edit_tid = $thread['tid'];
|
$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)
|
// 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";
|
$inline_edit_class = "subject_editable";
|
}
| }
|
|
|
$lastposter = htmlspecialchars_uni($thread['lastposter']);
| |
$lastposteruid = $thread['lastposteruid'];
|
$lastposteruid = $thread['lastposteruid'];
|
| if(!$lastposteruid && !$thread['lastposter']) { $lastposter = htmlspecialchars_uni($lang->guest); } else { $lastposter = htmlspecialchars_uni($thread['lastposter']); }
|
$lastpostdate = my_date('relative', $thread['lastpost']);
// Don't link to guest's profiles (they have no profile). if($lastposteruid == 0) { $lastposterlink = $lastposter;
|
$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);
| else { $lastposterlink = build_profile_link($lastposter, $lastposteruid);
|
Zeile 1329 | Zeile 1336 |
---|
if($fpermissions['canviewdeletionnotice'] != 0 && $thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted")) { eval("\$threads .= \"".$templates->get("forumdisplay_thread_deleted")."\";");
|
if($fpermissions['canviewdeletionnotice'] != 0 && $thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted")) { eval("\$threads .= \"".$templates->get("forumdisplay_thread_deleted")."\";");
|
}
| }
|
else {
|
else {
|
| $thread['start_datetime'] = my_date('relative', $thread['dateline']);
|
eval("\$threads .= \"".$templates->get("forumdisplay_thread")."\";"); } }
| eval("\$threads .= \"".$templates->get("forumdisplay_thread")."\";"); } }
|
Zeile 1347 | Zeile 1355 |
---|
$gidswhere = ''; switch($db->type)
|
$gidswhere = ''; switch($db->type)
|
{
| {
|
case "pgsql": case "sqlite": foreach($gids as $gid)
| case "pgsql": case "sqlite": foreach($gids as $gid)
|
Zeile 1361 | Zeile 1369 |
---|
foreach($gids as $gid) { $gid = (int)$gid;
|
foreach($gids as $gid) { $gid = (int)$gid;
|
$gidswhere .= " OR CONCAT(',',groups,',') LIKE '%,{$gid},%'";
| $gidswhere .= " OR CONCAT(',',`groups`,',') LIKE '%,{$gid},%'";
|
}
|
}
|
$query = $db->simple_select("modtools", 'tid, name', "(CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums='') AND (groups='' OR CONCAT(',',groups,',') LIKE '%,-1,%'{$gidswhere}) AND type = 't'");
| $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)) {
|
break; }
while($tool = $db->fetch_array($query)) {
|
| $tool['name'] = htmlspecialchars_uni($tool['name']);
|
eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";"); }
| eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";"); }
|
Zeile 1440 | Zeile 1449 |
---|
// Subscription status $add_remove_subscription = 'add'; $add_remove_subscription_text = $lang->subscribe_forum;
|
// Subscription status $add_remove_subscription = 'add'; $add_remove_subscription_text = $lang->subscribe_forum;
|
| $addremovesubscription = '';
|
if($mybb->user['uid']) {
| if($mybb->user['uid']) {
|
Zeile 1450 | Zeile 1460 |
---|
$add_remove_subscription = 'remove'; $add_remove_subscription_text = $lang->unsubscribe_forum; }
|
$add_remove_subscription = 'remove'; $add_remove_subscription_text = $lang->unsubscribe_forum; }
|
| eval("\$addremovesubscription = \"".$templates->get("forumdisplay_threadlist_subscription")."\";");
|
}
$inline_edit_js = $clearstoredpass = '';
| }
$inline_edit_js = $clearstoredpass = '';
|
Zeile 1474 | Zeile 1486 |
---|
}
$prefixselect = build_forum_prefix_select($fid, $tprefix);
|
}
$prefixselect = build_forum_prefix_select($fid, $tprefix);
|
| $plugins->run_hooks("forumdisplay_threadlist");
|
$lang->rss_discovery_forum = $lang->sprintf($lang->rss_discovery_forum, htmlspecialchars_uni(strip_tags($foruminfo['name']))); eval("\$rssdiscovery = \"".$templates->get("forumdisplay_rssdiscovery")."\";");
| $lang->rss_discovery_forum = $lang->sprintf($lang->rss_discovery_forum, htmlspecialchars_uni(strip_tags($foruminfo['name']))); eval("\$rssdiscovery = \"".$templates->get("forumdisplay_rssdiscovery")."\";");
|