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 611 | Zeile 611 |
---|
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", "COUNT(tid) AS threads", "fid = '$fid' $useronly $visibleonly $datecutsql $prefixsql"); $threadcount = $db->fetch_field($query, "threads");
|
}
// How many pages are there?
| }
// How many pages are there?
|
Zeile 864 | Zeile 844 |
---|
if($fpermissions['canviewthreads'] != 0) { $plugins->run_hooks("forumdisplay_get_threads");
|
if($fpermissions['canviewthreads'] != 0) { $plugins->run_hooks("forumdisplay_get_threads");
|
| // Allow viewing unapproved threads for logged in users if($mybb->user['uid'] && $mybb->settings['showownunapproved']) { $tvisibleonly .= " OR (t.fid='$fid' AND t.uid=".$mybb->user['uid'].")"; }
|
// Start Getting Threads $query = $db->query("
| // Start Getting Threads $query = $db->query("
|
Zeile 874 | Zeile 860 |
---|
ORDER BY t.sticky DESC, {$t}{$sortfield} $sortordernow $sortfield2 LIMIT $start, $perpage ");
|
ORDER BY t.sticky DESC, {$t}{$sortfield} $sortordernow $sortfield2 LIMIT $start, $perpage ");
|
|
|
$ratings = false; $moved_threads = array(); while($thread = $db->fetch_array($query))
| $ratings = false; $moved_threads = array(); while($thread = $db->fetch_array($query))
|
Zeile 919 | Zeile 905 |
---|
$threadcache[$rating['tid']]['rated'] = 1; } }
|
$threadcache[$rating['tid']]['rated'] = 1; } }
|
}
| }
|
// If user has moderation tools available, prepare the Select All feature $selectall = ''; if(is_moderator($fid) && $threadcount > $perpage)
| // If user has moderation tools available, prepare the Select All feature $selectall = ''; if(is_moderator($fid) && $threadcount > $perpage)
|
Zeile 929 | Zeile 915 |
---|
$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)) {
| if(!empty($tids)) {
|
Zeile 938 | Zeile 924 |
---|
// 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))
|
// 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']]))
|
$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;
|
$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))
| // Read threads if($mybb->user['uid'] && $mybb->settings['threadreadcut'] > 0 && !empty($threadcache))
|
Zeile 988 | Zeile 974 |
---|
if(isset($mybb->cookies['mybb']['readallforums']) && !$forum_read) { $forum_read = $mybb->cookies['mybb']['lastvisit'];
|
if(isset($mybb->cookies['mybb']['readallforums']) && !$forum_read) { $forum_read = $mybb->cookies['mybb']['lastvisit'];
|
}
| }
|
}
|
}
|
|
|
$unreadpost = 0; $threads = ''; if(!empty($threadcache) && is_array($threadcache))
| $unreadpost = 0; $threads = ''; if(!empty($threadcache) && is_array($threadcache))
|
Zeile 1001 | Zeile 987 |
---|
}
if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1)
|
}
if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1)
|
{
| {
|
$mybb->settings['postsperpage'] = 20; }
| $mybb->settings['postsperpage'] = 20; }
|
Zeile 1039 | Zeile 1025 |
---|
$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 {
|
Zeile 1121 | Zeile 1114 |
---|
$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)
|
{
|
{
|
$thread['posts'] += $thread['unapprovedposts'] + $thread['deletedposts'];
| 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['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'])
|
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")."\";");
|
$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'];
|
else { $pagesstop = $thread['pages'];
|
}
| }
|
for($i = 1; $i <= $pagesstop; ++$i) {
| for($i = 1; $i <= $pagesstop; ++$i) {
|
Zeile 1150 | Zeile 1153 |
---|
}
eval("\$thread['multipage'] = \"".$templates->get("forumdisplay_thread_multipage")."\";");
|
}
eval("\$thread['multipage'] = \"".$templates->get("forumdisplay_thread_multipage")."\";");
|
} else
| } else
|
{ $threadpages = ''; $morelink = '';
| { $threadpages = ''; $morelink = '';
|
Zeile 1160 | Zeile 1163 |
---|
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 1247 | Zeile 1250 |
---|
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")
| }
if($moved[0] == "moved")
|
Zeile 1268 | Zeile 1271 |
---|
$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).
| $lastpostdate = my_date('relative', $thread['lastpost']);
// Don't link to guest's profiles (they have no profile).
|
Zeile 1361 | Zeile 1372 |
---|
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 1422 |
---|
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 1452 |
---|
// 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 1463 |
---|
$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 = '';
// Is this a real forum with threads?
| $inline_edit_js = $clearstoredpass = '';
// Is this a real forum with threads?
|
Zeile 1465 | Zeile 1480 |
---|
if(!$threadcount && $fpermissions['canviewthreads'] == 1) { eval("\$threads = \"".$templates->get("forumdisplay_nothreads")."\";");
|
if(!$threadcount && $fpermissions['canviewthreads'] == 1) { 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']) { $post_code_string = "&my_post_key=".$mybb->post_code;
| |
}
$prefixselect = build_forum_prefix_select($fid, $tprefix);
| }
$prefixselect = build_forum_prefix_select($fid, $tprefix);
|