Zeile 103 | Zeile 103 |
---|
while($thread = $db->fetch_array($query)) {
|
while($thread = $db->fetch_array($query)) {
|
if(!$private_forums[$thread['fid']])
| if(!isset($private_forums[$thread['fid']]))
|
{ $private_forums[$thread['fid']] = $thread; }
| { $private_forums[$thread['fid']] = $thread; }
|
Zeile 364 | Zeile 364 |
---|
eval("\$lastpost = \"".$templates->get("forumbit_depth2_forum_lastpost_hidden")."\";"); }
|
eval("\$lastpost = \"".$templates->get("forumbit_depth2_forum_lastpost_hidden")."\";"); }
|
// Moderator column is not off
| // Moderator column $modlist = '';
|
if($mybb->settings['modlist'] != 0) { $done_moderators = array(
| if($mybb->settings['modlist'] != 0) { $done_moderators = array(
|
Zeile 420 | Zeile 421 |
---|
if($moderators) { eval("\$modlist = \"".$templates->get("forumbit_moderators")."\";");
|
if($moderators) { eval("\$modlist = \"".$templates->get("forumbit_moderators")."\";");
|
} else { $modlist = '';
| |
} }
| } }
|
Zeile 490 | Zeile 487 |
---|
global $mybb, $lang, $db, $unread_forums;
// This forum is a redirect, so override the folder icon with the "offlink" icon.
|
global $mybb, $lang, $db, $unread_forums;
// This forum is a redirect, so override the folder icon with the "offlink" icon.
|
if($forum['linkto'] != '')
| if(!empty($forum['linkto']))
|
{ $folder = "offlink"; $altonoff = $lang->forum_redirect;
| { $folder = "offlink"; $altonoff = $lang->forum_redirect;
|