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 152 | Zeile 152 |
---|
$subforums = ''; $child_forums = build_forumbits($fid, 2);
|
$subforums = ''; $child_forums = build_forumbits($fid, 2);
|
$forums = $child_forums['forum_list'];
| |
|
|
if($forums)
| if(!empty($child_forums) && !empty($child_forums['forum_list']))
|
{
|
{
|
| $forums = $child_forums['forum_list'];
|
$lang->sub_forums_in = $lang->sprintf($lang->sub_forums_in, $foruminfo['name']); eval("\$subforums = \"".$templates->get("forumdisplay_subforums")."\";"); }
| $lang->sub_forums_in = $lang->sprintf($lang->sub_forums_in, $foruminfo['name']); eval("\$subforums = \"".$templates->get("forumdisplay_subforums")."\";"); }
|
Zeile 177 | Zeile 177 |
---|
$forumjump = build_forum_jump("", $fid, 1); }
|
$forumjump = build_forum_jump("", $fid, 1); }
|
| $newthread = '';
|
if($foruminfo['type'] == "f" && $foruminfo['open'] != 0 && $fpermissions['canpostthreads'] != 0 && $mybb->user['suspendposting'] == 0) { eval("\$newthread = \"".$templates->get("forumdisplay_newthread")."\";"); }
|
if($foruminfo['type'] == "f" && $foruminfo['open'] != 0 && $fpermissions['canpostthreads'] != 0 && $mybb->user['suspendposting'] == 0) { eval("\$newthread = \"".$templates->get("forumdisplay_newthread")."\";"); }
|
| $searchforum = '';
|
if($fpermissions['cansearch'] != 0 && $foruminfo['type'] == "f") { eval("\$searchforum = \"".$templates->get("forumdisplay_searchforum")."\";");
| if($fpermissions['cansearch'] != 0 && $foruminfo['type'] == "f") { eval("\$searchforum = \"".$templates->get("forumdisplay_searchforum")."\";");
|
Zeile 282 | Zeile 284 |
---|
$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 && $mybb->usergroup['canbeinvisible'] == 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 387 |
---|
$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 403 |
---|
$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 594 |
---|
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")."\";");
$threadcount = 0; $useronly = $tuseronly = ""; if(isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
|
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']}"; }
if($fpermissions['canviewthreads'] != 0) {
|
$useronly = "AND uid={$mybb->user['uid']}"; $tuseronly = "AND t.uid={$mybb->user['uid']}"; }
if($fpermissions['canviewthreads'] != 0) {
|
// How many posts are there? if(($datecut > 0 && $datecut != 9999) || isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
| // How many threads are there? if ($useronly === "" && $datecutsql === "" && $prefixsql === "")
|
{
|
{
|
$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));
| $threadcount = 0;
$query = $db->simple_select("forums", "threads, unapprovedthreads, deletedthreads", "fid=".(int)$fid);
|
$forum_threads = $db->fetch_array($query);
|
$forum_threads = $db->fetch_array($query);
|
$threadcount = $forum_threads['threads']; if($ismod == true)
| if(in_array(1, $visible_states)) { $threadcount += $forum_threads['threads']; }
if(in_array(-1, $visible_states)) { $threadcount += $forum_threads['deletedthreads']; }
if(in_array(0, $visible_states)) { $threadcount += $forum_threads['unapprovedthreads']; } elseif($mybb->user['uid'] && $mybb->settings['showownunapproved'])
|
{
|
{
|
$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");
| $query = $db->simple_select("threads t", "COUNT(tid) AS threads", "fid = '$fid' AND t.visible=0 AND t.uid=".(int)$mybb->user['uid']); $threadcount += $db->fetch_field($query, "threads");
|
} }
|
} }
|
}
| else { $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? if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1) { $mybb->settings['threadsperpage'] = 20; }
|
// 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)
|
$perpage = $mybb->settings['threadsperpage'];
if($mybb->input['page'] > 0)
|
{
| {
|
$page = $mybb->input['page']; $start = ($page-1) * $perpage; $pages = $threadcount / $perpage;
| $page = $mybb->input['page']; $start = ($page-1) * $perpage; $pages = $threadcount / $perpage;
|
Zeile 697 | Zeile 705 |
---|
if($sortordernow != "desc") { $page_url .= "{$q}{$and}order={$sortordernow}";
|
if($sortordernow != "desc") { $page_url .= "{$q}{$and}order={$sortordernow}";
|
$q = ''; $and = "&"; }
| $q = ''; $and = "&"; }
|
if($datecut > 0 && $datecut != 9999) {
| if($datecut > 0 && $datecut != 9999) {
|
Zeile 719 | Zeile 727 |
---|
} $multipage = multipage($threadcount, $perpage, $page, $page_url);
|
} $multipage = multipage($threadcount, $perpage, $page, $page_url);
|
| $ratingcol = $ratingsort = '';
|
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 761 |
---|
if($ismod) { ++$colspan;
|
if($ismod) { ++$colspan;
|
}
| }
|
// Get Announcements $announcementlist = '';
| // Get Announcements $announcementlist = '';
|
Zeile 841 | Zeile 850 |
---|
{ eval("\$announcementlist = \"".$templates->get("forumdisplay_announcements")."\";"); $shownormalsep = true;
|
{ eval("\$announcementlist = \"".$templates->get("forumdisplay_announcements")."\";"); $shownormalsep = true;
|
}
| }
|
if(empty($cookie)) {
| if(empty($cookie)) {
|
Zeile 894 | Zeile 903 |
---|
{ $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 915 |
---|
} } }
|
} } }
|
| $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 929 | Zeile 945 |
---|
$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")."\";");
|
$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);
| if(!empty($tids)) { $tids = implode(",", $tids);
|
Zeile 966 | Zeile 982 |
---|
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']) {
|
| $forum_read = 0;
|
$query = $db->simple_select("forumsread", "dateline", "fid='{$fid}' AND uid='{$mybb->user['uid']}'");
|
$query = $db->simple_select("forumsread", "dateline", "fid='{$fid}' AND uid='{$mybb->user['uid']}'");
|
$forum_read = $db->fetch_field($query, "dateline");
| if($db->num_rows($query) > 0) { $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)
| $read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($forum_read == 0 || $forum_read < $read_cutoff)
|
Zeile 1038 | Zeile 1058 |
---|
$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 1082 |
---|
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 1137 |
---|
{ $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 1148 |
---|
$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 1184 |
---|
{ $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 1197 |
---|
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 1221 |
---|
$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 1214 | Zeile 1251 |
---|
$last_read = $read_cutoff; } }
|
$last_read = $read_cutoff; } }
|
else { $last_read = my_get_array_cookie("threadread", $thread['tid']); }
| 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")
|
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";
| $folder .= "new"; $folder_label .= $lang->icon_new; $new_class = "subject_new";
|
Zeile 1246 | Zeile 1283 |
---|
}
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";
| if($moved[0] == "moved") { $folder = "move";
|
Zeile 1259 | Zeile 1296 |
---|
$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) { $inline_edit_class = "subject_editable";
|
// 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 = 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).
| $lastpostdate = my_date('relative', $thread['lastpost']);
// Don't link to guest's profiles (they have no profile).
|
Zeile 1332 | Zeile 1377 |
---|
} else {
|
} else {
|
| $thread['start_datetime'] = my_date('relative', $thread['dateline']);
|
eval("\$threads .= \"".$templates->get("forumdisplay_thread")."\";"); } }
| eval("\$threads .= \"".$templates->get("forumdisplay_thread")."\";"); } }
|
Zeile 1361 | Zeile 1407 |
---|
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 1410 | Zeile 1457 |
---|
eval("\$inlinemodmanage = \"".$templates->get("forumdisplay_inlinemoderation_manage")."\";"); }
|
eval("\$inlinemodmanage = \"".$templates->get("forumdisplay_inlinemoderation_manage")."\";"); }
|
if(is_moderator($fid, "canapproveunapproveposts"))
| if(is_moderator($fid, "canapproveunapprovethreads"))
|
{ eval("\$inlinemodapproveunapprove = \"".$templates->get("forumdisplay_inlinemoderation_approveunapprove")."\";"); }
| { eval("\$inlinemodapproveunapprove = \"".$templates->get("forumdisplay_inlinemoderation_approveunapprove")."\";"); }
|
Zeile 1440 | Zeile 1487 |
---|
// 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']) { $query = $db->simple_select("forumsubscriptions", "fid", "fid='".$fid."' AND uid='{$mybb->user['uid']}'", array('limit' => 1));
|
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'))
| if($db->num_rows($query) > 0)
|
{ $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 = '';
|
|
|
// Is this a real forum with threads? if($foruminfo['type'] != "c") { if($fpermissions['canviewthreads'] != 1) { eval("\$threads = \"".$templates->get("forumdisplay_nopermission")."\";");
|
// 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)
|
if(!$threadcount && $fpermissions['canviewthreads'] == 1)
|
{
| {
|
eval("\$threads = \"".$templates->get("forumdisplay_nothreads")."\";");
|
eval("\$threads = \"".$templates->get("forumdisplay_nothreads")."\";");
|
}
| }
|
$clearstoredpass = ''; if($foruminfo['password'] != '') { eval("\$clearstoredpass = \"".$templates->get("forumdisplay_threadlist_clearpass")."\";"); }
|
$clearstoredpass = ''; if($foruminfo['password'] != '') { eval("\$clearstoredpass = \"".$templates->get("forumdisplay_threadlist_clearpass")."\";"); }
|
$post_code_string = ''; if($mybb->user['uid'])
| $prefixselect = build_forum_prefix_select($fid, $tprefix);
// Populate Forumsort $forumsort = ''; if($threadcount > 0)
|
{
|
{
|
$post_code_string = "&my_post_key=".$mybb->post_code;
| eval("\$forumsort = \"".$templates->get("forumdisplay_forumsort")."\";");
|
}
|
}
|
$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")."\";");
|