Zeile 3 | Zeile 3 |
---|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html
| * Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html
|
*
|
*
|
* $Id: functions_post.php 2201 2006-09-07 02:36:42Z Tikitiki $
| * $Id: functions_post.php 3531 2007-12-02 01:21:43Z chris $
|
*/
/**
| */
/**
|
Zeile 79 | Zeile 79 |
---|
$parser_options['allow_mycode'] = $forum['allowmycode']; $parser_options['allow_smilies'] = $forum['allowsmilies']; $parser_options['allow_imgcode'] = $forum['allowimgcode'];
|
$parser_options['allow_mycode'] = $forum['allowmycode']; $parser_options['allow_smilies'] = $forum['allowsmilies']; $parser_options['allow_imgcode'] = $forum['allowimgcode'];
|
| if(!$post['username']) { $post['username'] = $lang->guest; }
|
if($post['userusername']) { $parser_options['me_username'] = $post['userusername'];
| if($post['userusername']) { $parser_options['me_username'] = $post['userusername'];
|
Zeile 288 | Zeile 292 |
---|
if($usergroup['usertitle']) { $post['usertitle'] = $usergroup['usertitle'];
|
if($usergroup['usertitle']) { $post['usertitle'] = $usergroup['usertitle'];
|
} else {
| } else {
|
$post['usertitle'] = $lang->guest; } $usergroup['title'] = $lang->na;
| $post['usertitle'] = $lang->guest; } $usergroup['title'] = $lang->na;
|
Zeile 314 | Zeile 318 |
---|
$post['button_report'] = ''; if(!$post_type) {
|
$post['button_report'] = ''; if(!$post_type) {
|
if($post['edituid'] != "" && $post['edittime'] != "" && $post['editusername'] != "")
| // Figure out if we need to show an "edited by" message if($post['edituid'] != 0 && $post['edittime'] != 0 && $post['editusername'] != "" && ($mybb->settings['showeditedby'] != "no" && $usergroup['cancp'] == "no" || $mybb->settings['showeditbyadmin'] != "no" && $usergroup['cancp'] == "yes"))
|
{ $post['editdate'] = my_date($mybb->settings['dateformat'], $post['edittime']); $post['edittime'] = my_date($mybb->settings['timeformat'], $post['edittime']);
| { $post['editdate'] = my_date($mybb->settings['dateformat'], $post['edittime']); $post['edittime'] = my_date($mybb->settings['timeformat'], $post['edittime']);
|
Zeile 330 | Zeile 335 |
---|
if($mybb->user['uid'] == $post['uid']) { if($forumpermissions['candeletethreads'] == "yes" && $postcounter == 1)
|
if($mybb->user['uid'] == $post['uid']) { if($forumpermissions['candeletethreads'] == "yes" && $postcounter == 1)
|
{ $can_delete = 'yes';
| { $can_delete = 'yes';
|
} elseif($forumpermissions['candeleteposts'] == "yes" && $postcounter != 1) {
| } elseif($forumpermissions['candeleteposts'] == "yes" && $postcounter != 1) {
|
Zeile 344 | Zeile 349 |
---|
} // Inline moderation stuff if($ismod)
|
} // Inline moderation stuff if($ismod)
|
{
| {
|
if(strstr($_COOKIE[$inlinecookie], "|".$post['pid']."|")) { $inlinecheck = "checked=\"checked\"";
| if(strstr($_COOKIE[$inlinecookie], "|".$post['pid']."|")) { $inlinecheck = "checked=\"checked\"";
|
Zeile 469 | Zeile 474 |
---|
global $attachcache, $mybb, $theme, $templates, $forumpermissions, $lang;
$validationcount = 0;
|
global $attachcache, $mybb, $theme, $templates, $forumpermissions, $lang;
$validationcount = 0;
|
| $tcount = 0;
|
if(is_array($attachcache[$id])) { // This post has 1 or more attachments foreach($attachcache[$id] as $aid => $attachment)
| if(is_array($attachcache[$id])) { // This post has 1 or more attachments foreach($attachcache[$id] as $aid => $attachment)
|
Zeile 490 | Zeile 496 |
---|
// Support for [attachment=id] code if(stripos($post['message'], "[attachment=".$attachment['aid']."]") !== false) {
|
// Support for [attachment=id] code if(stripos($post['message'], "[attachment=".$attachment['aid']."]") !== false) {
|
if($attachment['thumbnail'] != "SMALL" && $attachment['thumbnail'] != "") { // We have a thumbnail to show (and its not the "SMALL" enough image
| // Show as thumbnail IF image is big && thumbnail exists && setting=='yes' // Show as full size image IF setting=='no' || (image is small && permissions allow) // Show as download for all other cases if($attachment['thumbnail'] != "SMALL" && $attachment['thumbnail'] != "" && $mybb->settings['attachthumbnails'] == 'yes') {
|
eval("\$attbit = \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";");
|
eval("\$attbit = \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";");
|
} elseif($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes")
| } elseif((($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no') && $isimage)
|
{
|
{
|
// Image is small enough to show - no thumbnail
| |
eval("\$attbit = \"".$templates->get("postbit_attachments_images_image")."\";");
|
eval("\$attbit = \"".$templates->get("postbit_attachments_images_image")."\";");
|
}
| }
|
else
|
else
|
{ // Show standard link to attachment
| {
|
eval("\$attbit = \"".$templates->get("postbit_attachments_attachment")."\";"); } $post['message'] = preg_replace("#\[attachment=".$attachment['aid']."]#si", $attbit, $post['message']); } else {
|
eval("\$attbit = \"".$templates->get("postbit_attachments_attachment")."\";"); } $post['message'] = preg_replace("#\[attachment=".$attachment['aid']."]#si", $attbit, $post['message']); } else {
|
if($attachment['thumbnail'] != "SMALL" && $attachment['thumbnail'] != "") { // We have a thumbnail to show
| // Show as thumbnail IF image is big && thumbnail exists && setting=='thumb' // Show as full size image IF setting=='fullsize' || (image is small && permissions allow) // Show as download for all other cases if($attachment['thumbnail'] != "SMALL" && $attachment['thumbnail'] != "" && $mybb->settings['attachthumbnails'] == 'yes') {
|
eval("\$post['thumblist'] .= \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";"); if($tcount == 5) {
| eval("\$post['thumblist'] .= \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";"); if($tcount == 5) {
|
Zeile 518 | Zeile 528 |
---|
} $tcount++; }
|
} $tcount++; }
|
elseif($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes")
| elseif((($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no') && $isimage)
|
{
|
{
|
// Image is small enough to show - no thumbnail
| |
eval("\$post['imagelist'] .= \"".$templates->get("postbit_attachments_images_image")."\";"); } else
| eval("\$post['imagelist'] .= \"".$templates->get("postbit_attachments_images_image")."\";"); } else
|