Zeile 1039 | Zeile 1039 |
---|
$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 1128 |
---|
$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 1160 | Zeile 1177 |
---|
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 1255 | Zeile 1272 |
---|
{ $folder = "move"; $gotounread = '';
|
{ $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).
| $lastpostdate = my_date('relative', $thread['lastpost']);
// Don't link to guest's profiles (they have no profile).
|
Zeile 1365 | Zeile 1390 |
---|
} $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;
|
} $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)) {
| while($tool = $db->fetch_array($query)) {
|
Zeile 1410 | Zeile 1435 |
---|
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 1471 | Zeile 1496 |
---|
if($foruminfo['password'] != '') { eval("\$clearstoredpass = \"".$templates->get("forumdisplay_threadlist_clearpass")."\";");
|
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);
|