Zeile 625 | Zeile 625 |
---|
error($lang->error_invalidthread); }
|
error($lang->error_invalidthread); }
|
if(is_moderator($thread['fid'], "canviewunapprove")) { $ismod = true; $show_posts = "(p.visible = '1' OR p.visible = '0')"; }
| // Make sure we are looking at a real thread here. if(($thread['visible'] == -1 && !is_moderator($thread['fid'], "canviewdeleted")) || ($thread['visible'] == 0 && !is_moderator($thread['fid'], "canviewunapprove")) || $thread['visible'] > 1) { error($lang->error_invalidthread); }
if(is_moderator($thread['fid'], "canviewdeleted") || is_moderator($thread['fid'], "canviewunapprove")) { if(is_moderator($thread['fid'], "canviewunapprove") && !is_moderator($thread['fid'], "canviewdeleted")) { $show_posts = "p.visible IN (0,1)"; } elseif(is_moderator($thread['fid'], "canviewdeleted") && !is_moderator($thread['fid'], "canviewunapprove")) { $show_posts = "p.visible IN (-1,1)"; } else { $show_posts = "p.visible IN (-1,0,1)"; } }
|
else {
|
else {
|
$ismod = false; $show_posts = "p.visible = '1'";
| $show_posts = "p.visible = 1";
|
}
|
}
|
// Make sure we are looking at a real thread here. if(($thread['visible'] != 1 && $ismod == false) || ($thread['visible'] > 1 && $ismod == true)) { error($lang->error_invalidthread); }
| |
// Does the thread belong to a valid forum? $forum = get_forum($thread['fid']); if(!$forum || $forum['type'] != "f")
| // Does the thread belong to a valid forum? $forum = get_forum($thread['fid']); if(!$forum || $forum['type'] != "f")
|
Zeile 960 | Zeile 970 |
---|
/** * Build a list of forums for RSS multiselect. *
|
/** * Build a list of forums for RSS multiselect. *
|
* @param int Parent forum ID. * @param unknown_type deprecated * @param boolean Whether to add selected attribute or not. * @param string HTML for the depth of the forum.
| * @param int $pid Parent forum ID. * @param string $selitem deprecated * @param boolean $addselect Whether to add selected attribute or not. * @param string $depth HTML for the depth of the forum.
|
* @return string HTML of the list of forums for CSS. */
|
* @return string HTML of the list of forums for CSS. */
|
function makesyndicateforums($pid="0", $selitem="", $addselect="1", $depth="")
| function makesyndicateforums($pid=0, $selitem="", $addselect=true, $depth="")
|
{ global $db, $forumcache, $permissioncache, $mybb, $forumlist, $forumlistbits, $flist, $lang, $unexp, $templates;
| { global $db, $forumcache, $permissioncache, $mybb, $forumlist, $forumlistbits, $flist, $lang, $unexp, $templates;
|