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 302 | Zeile 304 |
---|
{ $doneusers[$user['uid']] = $user['time']; ++$membercount;
|
{ $doneusers[$user['uid']] = $user['time']; ++$membercount;
|
if($user['invisible'] == 1)
| if($user['invisible'] == 1 && $mybb->usergroup['canbeinvisible'] == 1)
|
{ $invisiblemark = "*"; ++$inviscount;
| { $invisiblemark = "*"; ++$inviscount;
|
Zeile 607 | Zeile 609 |
---|
if($fpermissions['canviewthreads'] != 0) { // How many threads are there?
|
if($fpermissions['canviewthreads'] != 0) { // 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");
| if ($useronly === "" && $datecutsql === "" && $prefixsql === "") { $threadcount = 0;
$query = $db->simple_select("forums", "threads, unapprovedthreads, deletedthreads", "fid=".(int)$fid); $forum_threads = $db->fetch_array($query);
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']) { $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?
| }
// How many pages are there?
|
Zeile 635 | Zeile 668 |
---|
{ $start = 0; $page = 1;
|
{ $start = 0; $page = 1;
|
}
| }
|
$end = $start + $perpage; $lower = $start + 1; $upper = $end;
| $end = $start + $perpage; $lower = $start + 1; $upper = $end;
|
Zeile 648 | Zeile 681 |
---|
// Assemble page URL if($mybb->input['sortby'] || $mybb->input['order'] || $mybb->input['datecut'] || $mybb->input['prefix']) // Ugly URL
|
// 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);
| { $page_url = str_replace("{fid}", $fid, FORUM_URL_PAGED);
|
if($mybb->seo_support == true)
|
if($mybb->seo_support == true)
|
{
| {
|
$q = "?"; $and = '';
|
$q = "?"; $and = '';
|
}
| }
|
else { $q = '';
| else { $q = '';
|
Zeile 663 | Zeile 696 |
---|
}
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 677 | Zeile 710 |
---|
}
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 = "&";
|
Zeile 694 | 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 718 | Zeile 752 |
---|
{ $t = "t."; $sortfield = "lastpost";
|
{ $t = "t."; $sortfield = "lastpost";
|
}
| }
|
$ratingadd = ''; $lpbackground = "trow1"; $colspan = "6";
| $ratingadd = ''; $lpbackground = "trow1"; $colspan = "6";
|
Zeile 770 | Zeile 804 |
---|
{ $new_class = ' class="subject_old"'; $folder = "folder";
|
{ $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']) {
| // Mmm, eat those announcement cookies if they're older than our last visit if(isset($cookie[$announcement['aid']]) && $cookie[$announcement['aid']] < $mybb->user['lastvisit']) {
|
Zeile 826 | Zeile 860 |
---|
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);
|
} }
| } }
|
else { $announcementlist = '';
| else { $announcementlist = '';
|
Zeile 855 | Zeile 889 |
---|
while($thread = $db->fetch_array($query)) { $threadcache[$thread['tid']] = $thread;
|
while($thread = $db->fetch_array($query)) { $threadcache[$thread['tid']] = $thread;
|
|
|
if($thread['numratings'] > 0 && $ratings == false)
|
if($thread['numratings'] > 0 && $ratings == false)
|
{
| {
|
$ratings = true; // Looks for ratings in the forum }
| $ratings = true; // Looks for ratings in the forum }
|
Zeile 869 | 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 937 | Zeile 971 |
---|
// Read threads if($mybb->user['uid'] && $mybb->settings['threadreadcut'] > 0 && !empty($threadcache))
|
// 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))
|
$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']]))
|
if(!empty($moved_threads[$readthread['tid']]))
|
{
| {
|
$readthread['tid'] = $moved_threads[$readthread['tid']]; } if($threadcache[$readthread['tid']])
| $readthread['tid'] = $moved_threads[$readthread['tid']]; } if($threadcache[$readthread['tid']])
|
Zeile 954 | Zeile 988 |
---|
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 1265 | Zeile 1303 |
---|
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(($thread['uid'] == $mybb->user['uid'] && $thread['closed'] != 1 && $mybb->user['uid'] != 0 && $can_edit_titles == 1) || $ismod == true) { $inline_edit_class = "subject_editable";
|
}
| }
|
$lastposteruid = $thread['lastposteruid']; if(!$lastposteruid && !$thread['lastposter'])
| $lastposteruid = $thread['lastposteruid']; if(!$lastposteruid && !$thread['lastposter'])
|
Zeile 1294 | Zeile 1332 |
---|
// Threads and posts requiring moderation if($thread['unapprovedposts'] > 0 && is_moderator($fid, "canviewunapprove"))
|
// Threads and posts requiring moderation if($thread['unapprovedposts'] > 0 && is_moderator($fid, "canviewunapprove"))
|
{
| {
|
if($thread['unapprovedposts'] > 1)
|
if($thread['unapprovedposts'] > 1)
|
{
| {
|
$unapproved_posts_count = $lang->sprintf($lang->thread_unapproved_posts_count, $thread['unapprovedposts']);
|
$unapproved_posts_count = $lang->sprintf($lang->thread_unapproved_posts_count, $thread['unapprovedposts']);
|
}
| }
|
else { $unapproved_posts_count = $lang->sprintf($lang->thread_unapproved_post_count, 1);
| else { $unapproved_posts_count = $lang->sprintf($lang->thread_unapproved_post_count, 1);
|
Zeile 1306 | Zeile 1344 |
---|
$thread['unapprovedposts'] = my_number_format($thread['unapprovedposts']); eval("\$unapproved_posts = \"".$templates->get("forumdisplay_thread_unapproved_posts")."\";");
|
$thread['unapprovedposts'] = my_number_format($thread['unapprovedposts']); eval("\$unapproved_posts = \"".$templates->get("forumdisplay_thread_unapproved_posts")."\";");
|
} else {
| } else {
|
$unapproved_posts = ''; }
| $unapproved_posts = ''; }
|
Zeile 1376 | Zeile 1414 |
---|
}
while($tool = $db->fetch_array($query))
|
}
while($tool = $db->fetch_array($query))
|
{
| {
|
$tool['name'] = htmlspecialchars_uni($tool['name']); eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";");
|
$tool['name'] = htmlspecialchars_uni($tool['name']); eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";");
|
}
| }
|
if($customthreadtools) { eval("\$customthreadtools = \"".$templates->get("forumdisplay_inlinemoderation_custom")."\";");
| if($customthreadtools) { eval("\$customthreadtools = \"".$templates->get("forumdisplay_inlinemoderation_custom")."\";");
|
Zeile 1390 | Zeile 1428 |
---|
$inlinemodopenclose = $inlinemodstickunstick = $inlinemodsoftdelete = $inlinemodrestore = $inlinemoddelete = $inlinemodmanage = $inlinemodapproveunapprove = '';
if(is_moderator($fid, "canopenclosethreads"))
|
$inlinemodopenclose = $inlinemodstickunstick = $inlinemodsoftdelete = $inlinemodrestore = $inlinemoddelete = $inlinemodmanage = $inlinemodapproveunapprove = '';
if(is_moderator($fid, "canopenclosethreads"))
|
{
| {
|
eval("\$inlinemodopenclose = \"".$templates->get("forumdisplay_inlinemoderation_openclose")."\";"); }
| eval("\$inlinemodopenclose = \"".$templates->get("forumdisplay_inlinemoderation_openclose")."\";"); }
|
Zeile 1417 | Zeile 1455 |
---|
if(is_moderator($fid, "canmanagethreads")) { eval("\$inlinemodmanage = \"".$templates->get("forumdisplay_inlinemoderation_manage")."\";");
|
if(is_moderator($fid, "canmanagethreads")) { eval("\$inlinemodmanage = \"".$templates->get("forumdisplay_inlinemoderation_manage")."\";");
|
}
| }
|
if(is_moderator($fid, "canapproveunapprovethreads")) {
| if(is_moderator($fid, "canapproveunapprovethreads")) {
|
Zeile 1444 | Zeile 1482 |
---|
if($unread_threads !== false && $unread_threads == 0 && empty($unread_forums)) { mark_forum_read($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; $addremovesubscription = '';
|
// 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")."\";"); }
|
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")."\";");
|
}
| }
|
$prefixselect = build_forum_prefix_select($fid, $tprefix);
|
$prefixselect = build_forum_prefix_select($fid, $tprefix);
|
| // Populate Forumsort $forumsort = ''; if($threadcount > 0) { eval("\$forumsort = \"".$templates->get("forumdisplay_forumsort")."\";"); }
|
$plugins->run_hooks("forumdisplay_threadlist");
$lang->rss_discovery_forum = $lang->sprintf($lang->rss_discovery_forum, htmlspecialchars_uni(strip_tags($foruminfo['name'])));
| $plugins->run_hooks("forumdisplay_threadlist");
$lang->rss_discovery_forum = $lang->sprintf($lang->rss_discovery_forum, htmlspecialchars_uni(strip_tags($foruminfo['name'])));
|