Zeile 206 | Zeile 206 |
---|
// If we're accessing poll results, fetch the forum theme for it and if we're overriding it else if(isset($mybb->input['pid']) && THIS_SCRIPT == "polls.php") {
|
// If we're accessing poll results, fetch the forum theme for it and if we're overriding it else if(isset($mybb->input['pid']) && THIS_SCRIPT == "polls.php") {
|
$query = $db->simple_select('threads', 'fid', "poll = '{$mybb->input['pid']}'", array('limit' => 1));
| $query = $db->query("SELECT t.fid FROM ".TABLE_PREFIX."polls p INNER JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.pid = '{$mybb->input['pid']}' LIMIT 1");
|
$fid = $db->fetch_field($query, 'fid');
if($fid)
| $fid = $db->fetch_field($query, 'fid');
if($fid)
|
Zeile 630 | Zeile 630 |
---|
$user['gid'] = (int)$user['gid'];
|
$user['gid'] = (int)$user['gid'];
|
if(!empty($groupscache[$user['gid']]['joinable']) && $groupscache[$user['gid']]['joinable'] == 1)
| if(!empty($groupscache[$user['gid']]['type']) && $groupscache[$user['gid']]['type'] == 4)
|
{ $showjoinnotice = true; $gids .= ",'{$user['gid']}'";
| { $showjoinnotice = true; $gids .= ",'{$user['gid']}'";
|
Zeile 745 | Zeile 745 |
---|
} }
|
} }
|
// Get awaiting moderation queue stats if($can_access_moderationqueue || ($mybb->user['ismoderator'] && $mybb->usergroup['canmodcp'] == 1 && $mybb->usergroup['canmanagemodqueue'] == 1))
| // Get awaiting moderation queue stats, except if the page is editpost.php, // because that page can make changes - (un)approving attachments, or deleting // unapproved attachments - that would invalidate anything generated here. // Just leave this queue notification blank for editpost.php. if(!(defined('THIS_SCRIPT') && THIS_SCRIPT == 'editpost.php') && ($can_access_moderationqueue || ($mybb->user['ismoderator'] && $mybb->usergroup['canmodcp'] == 1 && $mybb->usergroup['canmanagemodqueue'] == 1)))
|
{ $unapproved_posts = $unapproved_threads = 0; $query = $db->simple_select("posts", "replyto", "visible = 0");
| { $unapproved_posts = $unapproved_threads = 0; $query = $db->simple_select("posts", "replyto", "visible = 0");
|
Zeile 809 | Zeile 812 |
---|
$bannedwarning = ''; if($mybb->usergroup['isbannedgroup'] == 1) {
|
$bannedwarning = ''; if($mybb->usergroup['isbannedgroup'] == 1) {
|
// Fetch details on their ban $query = $db->simple_select('banned', '*', "uid = '{$mybb->user['uid']}'", array('limit' => 1)); $ban = $db->fetch_array($query);
if($ban['uid']) { // Format their ban lift date and reason appropriately $banlift = $lang->banned_lifted_never; $reason = htmlspecialchars_uni($ban['reason']);
if($ban['lifted'] > 0)
| // Format their ban lift date and reason appropriately if(!empty($mybb->user['banned'])) { if(!empty($mybb->user['banlifted'])) { $banlift = my_date('normal', $mybb->user['banlifted']); } else
|
{
|
{
|
$banlift = my_date('normal', $ban['lifted']);
| $banlift = $lang->banned_lifted_never;
|
}
|
}
|
| } else { $banlift = $lang->unknown;
|
}
|
}
|
if(empty($reason)) { $reason = $lang->unknown;
| if(!empty($mybb->user['banreason'])) { $reason = htmlspecialchars_uni($mybb->user['banreason']);
|
}
|
}
|
if(empty($banlift))
| else
|
{
|
{
|
$banlift = $lang->unknown;
| $reason = $lang->unknown;
|
}
// Display a nice warning to the user
| }
// Display a nice warning to the user
|