Vergleich inc/functions_post.php - 1.2.8 - 1.2.10

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 6Zeile 6
 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html
*

 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html
*

 * $Id: functions_post.php 3135 2007-06-14 20:10:46Z dennis $

 * $Id: functions_post.php 3531 2007-12-02 01:21:43Z chris $

 */

/**

 */

/**

Zeile 319Zeile 319
	if(!$post_type)
{
// Figure out if we need to show an "edited by" message

	if(!$post_type)
{
// Figure out if we need to show an "edited by" message

		// Only show if at least one of "showeditedby" or "showeditedbyadmin" is enabled
if($post['edituid'] != "" && $post['edittime'] != "" && $post['editusername'] != "" && $mybb->settings['showeditedby'] != "no" && $mybb->settings['showeditedbyadmin'] != "no")

		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 475Zeile 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 503Zeile 503
					{
eval("\$attbit = \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";");
}

					{
eval("\$attbit = \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";");
}

					elseif(($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no')

					elseif((($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no') && $isimage)

					{
eval("\$attbit = \"".$templates->get("postbit_attachments_images_image")."\";");
}

					{
eval("\$attbit = \"".$templates->get("postbit_attachments_images_image")."\";");
}

Zeile 528Zeile 528
						}
$tcount++;
}

						}
$tcount++;
}

					elseif(($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no')

					elseif((($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no') && $isimage)

					{
eval("\$post['imagelist'] .= \"".$templates->get("postbit_attachments_images_image")."\";");
}

					{
eval("\$post['imagelist'] .= \"".$templates->get("postbit_attachments_images_image")."\";");
}