Zeile 11 | Zeile 11 |
---|
/** * Build a post bit *
|
/** * Build a post bit *
|
* @param array The post data * @param int The type of post bit we're building (1 = preview, 2 = pm, 3 = announcement, else = post)
| * @param array $post The post data * @param int $post_type The type of post bit we're building (1 = preview, 2 = pm, 3 = announcement, else = post)
|
* @return string The built post bit */ function build_postbit($post, $post_type=0)
| * @return string The built post bit */ function build_postbit($post, $post_type=0)
|
Zeile 265 | Zeile 265 |
---|
} } }
|
} } }
|
|
|
$post['usertitle'] = htmlspecialchars_uni($post['usertitle']);
if($usergroup['stars'])
| $post['usertitle'] = htmlspecialchars_uni($post['usertitle']);
if($usergroup['stars'])
|
Zeile 305 | Zeile 305 |
---|
else { if($post['away'] == 1 && $mybb->settings['allowaway'] != 0)
|
else { if($post['away'] == 1 && $mybb->settings['allowaway'] != 0)
|
{
| {
|
eval("\$post['onlinestatus'] = \"".$templates->get("postbit_away")."\";");
|
eval("\$post['onlinestatus'] = \"".$templates->get("postbit_away")."\";");
|
}
| }
|
else { eval("\$post['onlinestatus'] = \"".$templates->get("postbit_offline")."\";"); }
|
else { eval("\$post['onlinestatus'] = \"".$templates->get("postbit_offline")."\";"); }
|
}
| }
|
$post['useravatar'] = ''; if(isset($mybb->user['showavatars']) && $mybb->user['showavatars'] != 0 || $mybb->user['uid'] == 0)
|
$post['useravatar'] = ''; if(isset($mybb->user['showavatars']) && $mybb->user['showavatars'] != 0 || $mybb->user['uid'] == 0)
|
{ $useravatar = format_avatar(htmlspecialchars_uni($post['avatar']), $post['avatardimensions'], $mybb->settings['postmaxavatarsize']);
| { $useravatar = format_avatar($post['avatar'], $post['avatardimensions'], $mybb->settings['postmaxavatarsize']);
|
eval("\$post['useravatar'] = \"".$templates->get("postbit_avatar")."\";"); }
|
eval("\$post['useravatar'] = \"".$templates->get("postbit_avatar")."\";"); }
|
else { $post['useravatar'] = ''; }
eval("\$post['button_find'] = \"".$templates->get("postbit_find")."\";");
| $post['button_find'] = ''; if($mybb->usergroup['cansearch'] == 1) { eval("\$post['button_find'] = \"".$templates->get("postbit_find")."\";"); }
|
if($mybb->settings['enablepms'] == 1 && $post['receivepms'] != 0 && $mybb->usergroup['cansendpms'] == 1 && my_strpos(",".$post['ignorelist'].",", ",".$mybb->user['uid'].",") === false)
|
if($mybb->settings['enablepms'] == 1 && $post['receivepms'] != 0 && $mybb->usergroup['cansendpms'] == 1 && my_strpos(",".$post['ignorelist'].",", ",".$mybb->user['uid'].",") === false)
|
{
| {
|
eval("\$post['button_pm'] = \"".$templates->get("postbit_pm")."\";"); }
$post['button_rep'] = '';
|
eval("\$post['button_pm'] = \"".$templates->get("postbit_pm")."\";"); }
$post['button_rep'] = '';
|
if($post_type != 3 && $mybb->settings['enablereputation'] == 1 && $mybb->settings['postrep'] == 1 && $mybb->usergroup['cangivereputations'] == 1 && $usergroup['usereputationsystem'] == 1 && ($mybb->settings['posrep'] || $mybb->settings['neurep'] || $mybb->settings['negrep']) && $post['uid'] != $mybb->user['uid']) {
| if($post_type != 3 && $mybb->settings['enablereputation'] == 1 && $mybb->settings['postrep'] == 1 && $mybb->usergroup['cangivereputations'] == 1 && $usergroup['usereputationsystem'] == 1 && ($mybb->settings['posrep'] || $mybb->settings['neurep'] || $mybb->settings['negrep']) && $post['uid'] != $mybb->user['uid'] && (!isset($post['visible']) || $post['visible'] == 1) && (!isset($thread['visible']) || $thread['visible'] == 1)) {
|
if(!$post['pid']) { $post['pid'] = 0;
|
if(!$post['pid']) { $post['pid'] = 0;
|
}
| }
|
eval("\$post['button_rep'] = \"".$templates->get("postbit_rep_button")."\";"); }
|
eval("\$post['button_rep'] = \"".$templates->get("postbit_rep_button")."\";"); }
|
if($post['website'] != "" && $mybb->settings['hidewebsite'] != -1 && !is_member($mybb->settings['hidewebsite']) && $usergroup['canchangewebsite'] == 1)
| if($post['website'] != "" && !is_member($mybb->settings['hidewebsite']) && $usergroup['canchangewebsite'] == 1)
|
{ $post['website'] = htmlspecialchars_uni($post['website']); eval("\$post['button_www'] = \"".$templates->get("postbit_www")."\";");
| { $post['website'] = htmlspecialchars_uni($post['website']); eval("\$post['button_www'] = \"".$templates->get("postbit_www")."\";");
|
Zeile 354 | Zeile 354 |
---|
}
if($post['hideemail'] != 1 && $mybb->usergroup['cansendemail'] == 1)
|
}
if($post['hideemail'] != 1 && $mybb->usergroup['cansendemail'] == 1)
|
{
| {
|
eval("\$post['button_email'] = \"".$templates->get("postbit_email")."\";"); } else
| eval("\$post['button_email'] = \"".$templates->get("postbit_email")."\";"); } else
|
Zeile 374 | Zeile 374 |
---|
// Showing the warning level? (only show if not announcement) if($post_type != 3 && $mybb->settings['enablewarningsystem'] != 0 && $usergroup['canreceivewarnings'] != 0 && ($mybb->usergroup['canwarnusers'] != 0 || ($mybb->user['uid'] == $post['uid'] && $mybb->settings['canviewownwarning'] != 0))) {
|
// Showing the warning level? (only show if not announcement) if($post_type != 3 && $mybb->settings['enablewarningsystem'] != 0 && $usergroup['canreceivewarnings'] != 0 && ($mybb->usergroup['canwarnusers'] != 0 || ($mybb->user['uid'] == $post['uid'] && $mybb->settings['canviewownwarning'] != 0))) {
|
| if($mybb->settings['maxwarningpoints'] < 1) { $mybb->settings['maxwarningpoints'] = 10; }
|
$warning_level = round($post['warningpoints']/$mybb->settings['maxwarningpoints']*100); if($warning_level > 100) {
| $warning_level = round($post['warningpoints']/$mybb->settings['maxwarningpoints']*100); if($warning_level > 100) {
|
Zeile 477 | Zeile 482 |
---|
{ $post['usertitle'] = $lang->guest; }
|
{ $post['usertitle'] = $lang->guest; }
|
|
|
$post['usertitle'] = htmlspecialchars_uni($post['usertitle']);
$usergroup['title'] = $lang->na;
| $post['usertitle'] = htmlspecialchars_uni($post['usertitle']);
$usergroup['title'] = $lang->na;
|
Zeile 518 | Zeile 523 |
---|
if($replyall == true) { eval("\$post['button_replyall_pm'] = \"".$templates->get("postbit_replyall_pm")."\";");
|
if($replyall == true) { eval("\$post['button_replyall_pm'] = \"".$templates->get("postbit_replyall_pm")."\";");
|
}
| }
|
}
$post['editedmsg'] = ''; if(!$post_type) {
|
}
$post['editedmsg'] = ''; if(!$post_type) {
|
| if(!isset($forumpermissions)) { $forumpermissions = forum_permissions($fid); }
|
// Figure out if we need to show an "edited by" message if($post['edituid'] != 0 && $post['edittime'] != 0 && $post['editusername'] != "" && (($mybb->settings['showeditedby'] != 0 && $usergroup['cancp'] == 0) || ($mybb->settings['showeditedbyadmin'] != 0 && $usergroup['cancp'] == 1))) {
| // Figure out if we need to show an "edited by" message if($post['edituid'] != 0 && $post['edittime'] != 0 && $post['editusername'] != "" && (($mybb->settings['showeditedby'] != 0 && $usergroup['cancp'] == 0) || ($mybb->settings['showeditedbyadmin'] != 0 && $usergroup['cancp'] == 1))) {
|
Zeile 532 | Zeile 542 |
---|
$post['editedprofilelink'] = build_profile_link($post['editusername'], $post['edituid']); $editreason = ""; if($post['editreason'] != "")
|
$post['editedprofilelink'] = build_profile_link($post['editusername'], $post['edituid']); $editreason = ""; if($post['editreason'] != "")
|
{
| {
|
$post['editreason'] = $parser->parse_badwords($post['editreason']); $post['editreason'] = htmlspecialchars_uni($post['editreason']); eval("\$editreason = \"".$templates->get("postbit_editedby_editreason")."\";"); } eval("\$post['editedmsg'] = \"".$templates->get("postbit_editedby")."\";");
|
$post['editreason'] = $parser->parse_badwords($post['editreason']); $post['editreason'] = htmlspecialchars_uni($post['editreason']); eval("\$editreason = \"".$templates->get("postbit_editedby_editreason")."\";"); } eval("\$post['editedmsg'] = \"".$templates->get("postbit_editedby")."\";");
|
}
if((is_moderator($fid, "caneditposts") || ($forumpermissions['caneditposts'] == 1 && $mybb->user['uid'] == $post['uid'])) && $mybb->user['uid'] != 0)
| }
$time = TIME_NOW; if((is_moderator($fid, "caneditposts") || ($forumpermissions['caneditposts'] == 1 && $mybb->user['uid'] == $post['uid'] && $thread['closed'] != 1 && ($mybb->usergroup['edittimelimit'] == 0 || $mybb->usergroup['edittimelimit'] != 0 && $post['dateline'] > ($time-($mybb->usergroup['edittimelimit']*60))))) && $mybb->user['uid'] != 0)
|
{ eval("\$post['button_edit'] = \"".$templates->get("postbit_edit")."\";"); }
// Quick Delete button $can_delete_thread = $can_delete_post = 0;
|
{ eval("\$post['button_edit'] = \"".$templates->get("postbit_edit")."\";"); }
// Quick Delete button $can_delete_thread = $can_delete_post = 0;
|
if($mybb->user['uid'] == $post['uid']) {
| if($mybb->user['uid'] == $post['uid'] && $thread['closed'] == 0) {
|
if($forumpermissions['candeletethreads'] == 1 && $postcounter == 1) { $can_delete_thread = 1;
| if($forumpermissions['candeletethreads'] == 1 && $postcounter == 1) { $can_delete_thread = 1;
|
Zeile 559 | Zeile 570 |
---|
} }
|
} }
|
$postbit_qdelete = '';
| $postbit_qdelete = $postbit_qrestore = '';
|
if($mybb->user['uid'] != 0) {
|
if($mybb->user['uid'] != 0) {
|
if((is_moderator($fid, "candeleteposts") || $can_delete_post == 1) && $postcounter != 1)
| if((is_moderator($fid, "candeleteposts") || is_moderator($fid, "cansoftdeleteposts") || $can_delete_post == 1) && $postcounter != 1)
|
{ $postbit_qdelete = $lang->postbit_qdelete_post;
|
{ $postbit_qdelete = $lang->postbit_qdelete_post;
|
$display = "";
| $display = '';
|
if($post['visible'] == -1) { $display = "none"; } eval("\$post['button_quickdelete'] = \"".$templates->get("postbit_quickdelete")."\";");
|
if($post['visible'] == -1) { $display = "none"; } eval("\$post['button_quickdelete'] = \"".$templates->get("postbit_quickdelete")."\";");
|
// Restore Post if(is_moderator($fid, "canrestoreposts"))
| } else if((is_moderator($fid, "candeletethreads") || is_moderator($fid, "cansoftdeletethreads") || $can_delete_thread == 1) && $postcounter == 1) { $postbit_qdelete = $lang->postbit_qdelete_thread; $display = ''; if($post['visible'] == -1)
|
{
|
{
|
$display = "none"; if($post['visible'] == -1) { $display = ""; } $postbit_qrestore = $lang->postbit_qrestore_post; eval("\$post['button_quickrestore'] = \"".$templates->get("postbit_quickrestore")."\";");
| $display = "none"; } eval("\$post['button_quickdelete'] = \"".$templates->get("postbit_quickdelete")."\";"); }
// Restore Post if(is_moderator($fid, "canrestoreposts") && $postcounter != 1) { $display = "none"; if($post['visible'] == -1) { $display = '';
|
}
|
}
|
| $postbit_qrestore = $lang->postbit_qrestore_post; eval("\$post['button_quickrestore'] = \"".$templates->get("postbit_quickrestore")."\";");
|
}
|
}
|
else if((is_moderator($fid, "candeletethreads") || $can_delete_thread == 1) && $postcounter == 1)
| // Restore Thread else if(is_moderator($fid, "canrestorethreads") && $postcounter == 1)
|
{
|
{
|
$postbit_qdelete = $lang->postbit_qdelete_thread; $display = "";
| $display = "none";
|
if($post['visible'] == -1) {
|
if($post['visible'] == -1) {
|
$display = "none";
| $display = "";
|
} $postbit_qrestore = $lang->postbit_qrestore_thread;
|
} $postbit_qrestore = $lang->postbit_qrestore_thread;
|
eval("\$post['button_quickdelete'] = \"".$templates->get("postbit_quickdelete")."\";");
// Restore Post if(is_moderator($fid, "canrestoreposts")) { $display = "none"; if($post['visible'] == -1) { $display = ""; } eval("\$post['button_quickrestore'] = \"".$templates->get("postbit_quickrestore")."\";"); }
| eval("\$post['button_quickrestore'] = \"".$templates->get("postbit_quickrestore")."\";");
|
}
|
}
|
| }
if(!isset($ismod)) { $ismod = is_moderator($fid);
|
}
// Inline moderation stuff
| }
// Inline moderation stuff
|
Zeile 682 | Zeile 698 |
---|
{ $action = 'getip'; if($post_type == 2)
|
{ $action = 'getip'; if($post_type == 2)
|
{
| {
|
$action = 'getpmip'; } eval("\$post['iplogged'] = \"".$templates->get("postbit_iplogged_hiden")."\";");
| $action = 'getpmip'; } eval("\$post['iplogged'] = \"".$templates->get("postbit_iplogged_hiden")."\";");
|
Zeile 720 | Zeile 736 |
---|
get_post_attachments($id, $post); }
|
get_post_attachments($id, $post); }
|
if(isset($post['includesig']) && $post['includesig'] != 0 && $post['username'] && $post['signature'] != "" && ($mybb->user['uid'] == 0 || $mybb->user['showsigs'] != 0) && ($post['suspendsignature'] == 0 || $post['suspendsignature'] == 1 && $post['suspendsigtime'] != 0 && $post['suspendsigtime'] < TIME_NOW) && $usergroup['canusesig'] == 1 && ($usergroup['canusesigxposts'] == 0 || $usergroup['canusesigxposts'] > 0 && $postnum > $usergroup['canusesigxposts']) && $mybb->settings['hidesignatures'] != -1 && !is_member($mybb->settings['hidesignatures']))
| if(isset($post['includesig']) && $post['includesig'] != 0 && $post['username'] && $post['signature'] != "" && ($mybb->user['uid'] == 0 || $mybb->user['showsigs'] != 0) && ($post['suspendsignature'] == 0 || $post['suspendsignature'] == 1 && $post['suspendsigtime'] != 0 && $post['suspendsigtime'] < TIME_NOW) && $usergroup['canusesig'] == 1 && ($usergroup['canusesigxposts'] == 0 || $usergroup['canusesigxposts'] > 0 && $postnum > $usergroup['canusesigxposts']) && !is_member($mybb->settings['hidesignatures']))
|
{ $sig_parser = array( "allow_html" => $mybb->settings['sightml'],
| { $sig_parser = array( "allow_html" => $mybb->settings['sightml'],
|
Zeile 779 | Zeile 797 |
---|
break; default: // Regular post $post = $plugins->run_hooks("postbit", $post);
|
break; default: // Regular post $post = $plugins->run_hooks("postbit", $post);
|
| if(!isset($ignored_users)) { $ignored_users = array(); if($mybb->user['uid'] > 0 && $mybb->user['ignorelist'] != "") { $ignore_list = explode(',', $mybb->user['ignorelist']); foreach($ignore_list as $uid) { $ignored_users[$uid] = 1; } } }
|
// Is this author on the ignore list of the current user? Hide this post if(is_array($ignored_users) && $post['uid'] != 0 && isset($ignored_users[$post['uid']]) && $ignored_users[$post['uid']] == 1)
| // Is this author on the ignore list of the current user? Hide this post if(is_array($ignored_users) && $post['uid'] != 0 && isset($ignored_users[$post['uid']]) && $ignored_users[$post['uid']] == 1)
|
Zeile 788 | Zeile 819 |
---|
$post_visibility = "display: none;"; } break;
|
$post_visibility = "display: none;"; } break;
|
}
| }
|
if($mybb->settings['postlayout'] == "classic") { eval("\$postbit = \"".$templates->get("postbit_classic")."\";");
|
if($mybb->settings['postlayout'] == "classic") { eval("\$postbit = \"".$templates->get("postbit_classic")."\";");
|
}
| }
|
else { eval("\$postbit = \"".$templates->get("postbit")."\";");
|
else { eval("\$postbit = \"".$templates->get("postbit")."\";");
|
}
| }
|
$GLOBALS['post'] = "";
return $postbit;
| $GLOBALS['post'] = "";
return $postbit;
|
Zeile 807 | Zeile 838 |
---|
* Fetch the attachments for a specific post and parse inline [attachment=id] code. * Note: assumes you have $attachcache, an array of attachments set up. *
|
* Fetch the attachments for a specific post and parse inline [attachment=id] code. * Note: assumes you have $attachcache, an array of attachments set up. *
|
* @param int The ID of the item. * @param array The post or item passed by reference.
| * @param int $id The ID of the item. * @param array $post The post or item passed by reference.
|
*/ function get_post_attachments($id, &$post) {
| */ function get_post_attachments($id, &$post) {
|
Zeile 817 | Zeile 848 |
---|
$validationcount = 0; $tcount = 0; $post['attachmentlist'] = $post['thumblist'] = $post['imagelist'] = '';
|
$validationcount = 0; $tcount = 0; $post['attachmentlist'] = $post['thumblist'] = $post['imagelist'] = '';
|
| if(!isset($forumpermissions)) { $forumpermissions = forum_permissions($post['fid']); }
|
if(isset($attachcache[$id]) && is_array($attachcache[$id])) { // This post has 1 or more attachments foreach($attachcache[$id] as $aid => $attachment)
| if(isset($attachcache[$id]) && is_array($attachcache[$id])) { // This post has 1 or more attachments foreach($attachcache[$id] as $aid => $attachment)
|