Vergleich inc/functions_post.php - 1.8.12 - 1.8.14

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 90Zeile 90
			break;
case 3: // Announcement
global $announcementarray, $message;

			break;
case 3: // Announcement
global $announcementarray, $message;

			$parser_options['allow_html'] = $announcementarray['allowhtml'];

			$parser_options['allow_html'] = $mybb->settings['announcementshtml'] && $announcementarray['allowhtml'];

			$parser_options['allow_mycode'] = $announcementarray['allowmycode'];
$parser_options['allow_smilies'] = $announcementarray['allowsmilies'];
$parser_options['allow_imgcode'] = 1;

			$parser_options['allow_mycode'] = $announcementarray['allowmycode'];
$parser_options['allow_smilies'] = $announcementarray['allowsmilies'];
$parser_options['allow_imgcode'] = 1;

Zeile 110Zeile 110
			$parser_options['allow_imgcode'] = $forum['allowimgcode'];
$parser_options['allow_videocode'] = $forum['allowvideocode'];
$parser_options['filter_badwords'] = 1;

			$parser_options['allow_imgcode'] = $forum['allowimgcode'];
$parser_options['allow_videocode'] = $forum['allowvideocode'];
$parser_options['filter_badwords'] = 1;


if(!$post['username'])
{
$post['username'] = $lang->guest;
}

if($post['userusername'])
{
$parser_options['me_username'] = $post['userusername'];
}
else
{
$parser_options['me_username'] = $post['username'];
}

 
			break;

			break;

 
	}

if(!$post['username'])
{
$post['username'] = $lang->guest; // htmlspecialchars_uni'd below
}

if($post['userusername'])
{
$parser_options['me_username'] = $post['userusername'];
}
else
{
$parser_options['me_username'] = $post['username'];

	}

$post['username'] = htmlspecialchars_uni($post['username']);

	}

$post['username'] = htmlspecialchars_uni($post['username']);

Zeile 150Zeile 150
	elseif($mybb->input['mode'] == "threaded")
{
$post_extra_style = "border-top-width: 0;";

	elseif($mybb->input['mode'] == "threaded")
{
$post_extra_style = "border-top-width: 0;";

	}
else

	}
else

	{
$post_extra_style = "margin-top: 5px;";
}

	{
$post_extra_style = "margin-top: 5px;";
}

Zeile 188Zeile 188
		if(!$post['displaygroup'])
{
$post['displaygroup'] = $post['usergroup'];

		if(!$post['displaygroup'])
{
$post['displaygroup'] = $post['usergroup'];

		}

		}

		$usergroup = $groupscache[$post['displaygroup']];

		$usergroup = $groupscache[$post['displaygroup']];

	}

	}

	else
{
$usergroup = $groupscache[1];

	else
{
$usergroup = $groupscache[1];

Zeile 200Zeile 200
	{
$cached_titles = $cache->read("usertitles");
if(!empty($cached_titles))

	{
$cached_titles = $cache->read("usertitles");
if(!empty($cached_titles))

		{

		{

			foreach($cached_titles as $usertitle)
{
$titlescache[$usertitle['posts']] = $usertitle;
}

			foreach($cached_titles as $usertitle)
{
$titlescache[$usertitle['posts']] = $usertitle;
}

		}

		}


if(is_array($titlescache))
{
krsort($titlescache);
}
unset($usertitle, $cached_titles);


if(is_array($titlescache))
{
krsort($titlescache);
}
unset($usertitle, $cached_titles);

	}

	}


// Work out the usergroup/title stuff
$post['groupimage'] = '';


// Work out the usergroup/title stuff
$post['groupimage'] = '';

Zeile 406Zeile 406
		if($post_type != 3 && $post_type != 1 && purgespammer_show($post['postnum'], $post['usergroup'], $post['uid']))
{
eval("\$post['button_purgespammer'] = \"".$templates->get('postbit_purgespammer')."\";");

		if($post_type != 3 && $post_type != 1 && purgespammer_show($post['postnum'], $post['usergroup'], $post['uid']))
{
eval("\$post['button_purgespammer'] = \"".$templates->get('postbit_purgespammer')."\";");

		}

		}


// Display profile fields on posts - only if field is filled in
if(is_array($profile_fields))


// Display profile fields on posts - only if field is filled in
if(is_array($profile_fields))

Zeile 503Zeile 503
		eval("\$post['user_details'] = \"".$templates->get("postbit_author_guest")."\";");
}


		eval("\$post['user_details'] = \"".$templates->get("postbit_author_guest")."\";");
}


 
	$post['input_editreason'] = '';

	$post['button_edit'] = '';
$post['button_quickdelete'] = '';
$post['button_quickrestore'] = '';

	$post['button_edit'] = '';
$post['button_quickdelete'] = '';
$post['button_quickrestore'] = '';

Zeile 536Zeile 537
		{
$forumpermissions = forum_permissions($fid);
}

		{
$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 557Zeile 558
		$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)
{

		$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['input_editreason'] = \"".$templates->get("postbit_editreason")."\";");

			eval("\$post['button_edit'] = \"".$templates->get("postbit_edit")."\";");

			eval("\$post['button_edit'] = \"".$templates->get("postbit_edit")."\";");

		}


		}


		// Quick Delete button
$can_delete_thread = $can_delete_post = 0;
if($mybb->user['uid'] == $post['uid'] && $thread['closed'] == 0)

		// Quick Delete button
$can_delete_thread = $can_delete_post = 0;
if($mybb->user['uid'] == $post['uid'] && $thread['closed'] == 0)

Zeile 567Zeile 569
			if($forumpermissions['candeletethreads'] == 1 && $postcounter == 1)
{
$can_delete_thread = 1;

			if($forumpermissions['candeletethreads'] == 1 && $postcounter == 1)
{
$can_delete_thread = 1;

			}

			}

			else if($forumpermissions['candeleteposts'] == 1 && $postcounter != 1)
{
$can_delete_post = 1;

			else if($forumpermissions['candeleteposts'] == 1 && $postcounter != 1)
{
$can_delete_post = 1;

Zeile 580Zeile 582
			if((is_moderator($fid, "candeleteposts") || is_moderator($fid, "cansoftdeleteposts") || $can_delete_post == 1) && $postcounter != 1)
{
$postbit_qdelete = $lang->postbit_qdelete_post;

			if((is_moderator($fid, "candeleteposts") || is_moderator($fid, "cansoftdeleteposts") || $can_delete_post == 1) && $postcounter != 1)
{
$postbit_qdelete = $lang->postbit_qdelete_post;

				$display = '';
if($post['visible'] == -1)
{
$display = "none";

				$display = '';
if($post['visible'] == -1)
{
$display = "none";

				}
eval("\$post['button_quickdelete'] = \"".$templates->get("postbit_quickdelete")."\";");
}

				}
eval("\$post['button_quickdelete'] = \"".$templates->get("postbit_quickdelete")."\";");
}

Zeile 591Zeile 593
			{
$postbit_qdelete = $lang->postbit_qdelete_thread;
$display = '';

			{
$postbit_qdelete = $lang->postbit_qdelete_thread;
$display = '';

				if($post['visible'] == -1)

				if($post['visible'] == -1)

				{
$display = "none";
}

				{
$display = "none";
}

Zeile 600Zeile 602

// Restore Post
if(is_moderator($fid, "canrestoreposts") && $postcounter != 1)


// Restore Post
if(is_moderator($fid, "canrestoreposts") && $postcounter != 1)

			{
$display = "none";
if($post['visible'] == -1)

			{
$display = "none";
if($post['visible'] == -1)

				{
$display = '';
}

				{
$display = '';
}

Zeile 631Zeile 633
		// Inline moderation stuff
if($ismod)
{

		// Inline moderation stuff
if($ismod)
{

			if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|".$post['pid']."|"))

			if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|".$post['pid']."|") !== false)

			{
$inlinecheck = "checked=\"checked\"";
$inlinecount++;

			{
$inlinecheck = "checked=\"checked\"";
$inlinecount++;

Zeile 797Zeile 799
	$icon_cache = $cache->read("posticons");

if(isset($post['icon']) && $post['icon'] > 0 && $icon_cache[$post['icon']])

	$icon_cache = $cache->read("posticons");

if(isset($post['icon']) && $post['icon'] > 0 && $icon_cache[$post['icon']])

	{

	{

		$icon = $icon_cache[$post['icon']];

$icon['path'] = htmlspecialchars_uni($icon['path']);

		$icon = $icon_cache[$post['icon']];

$icon['path'] = htmlspecialchars_uni($icon['path']);

Zeile 870Zeile 872
		{
eval("\$postbit = \"".$templates->get("postbit")."\";");
}

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

	}

	}


$GLOBALS['post'] = "";



$GLOBALS['post'] = "";


Zeile 895Zeile 897
	{
$forumpermissions = forum_permissions($post['fid']);
}

	{
$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)

Zeile 920Zeile 922
				{
$attachment['dateuploaded'] = $attachment['dateline'];
}

				{
$attachment['dateuploaded'] = $attachment['dateline'];
}

				$attachdate = my_date('relative', $attachment['dateuploaded']);

				$attachdate = my_date('normal', $attachment['dateuploaded']);

				// 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)
{