Vergleich editpost.php - 1.2.0 - 1.2.8

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 3Zeile 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: editpost.php 2154 2006-08-27 16:52:47Z Tikitiki $

 * $Id: editpost.php 3095 2007-05-27 12:34:29Z CraKteR $

 */

define("IN_MYBB", 1);

 */

define("IN_MYBB", 1);

Zeile 88Zeile 88
	{
if($thread['closed'] == "yes")
{

	{
if($thread['closed'] == "yes")
{

			redirect("showthread.php?tid=$tid", $lang->redirect_threadclosed);

			error($lang->redirect_threadclosed);

		}
if($forumpermissions['candeleteposts'] == "no")
{

		}
if($forumpermissions['candeleteposts'] == "no")
{

Zeile 106Zeile 106
	{
if($thread['closed'] == "yes")
{

	{
if($thread['closed'] == "yes")
{

			redirect("showthread.php?tid=$tid", $lang->redirect_threadclosed);

			error($lang->redirect_threadclosed);

		}
if($forumpermissions['caneditposts'] == "no")
{

		}
if($forumpermissions['caneditposts'] == "no")
{

Zeile 193Zeile 193
			if($forumpermissions['candeletethreads'] == "yes")
{
delete_thread($tid);

			if($forumpermissions['candeletethreads'] == "yes")
{
delete_thread($tid);

				update_forum_count($fid);

 
				mark_reports($tid, "thread");

				mark_reports($tid, "thread");

				if(is_moderator($fid, "candeleteposts") != "yes")
{
log_moderator_action($modlogdata, "Deleted Thread");
}

				log_moderator_action($modlogdata, "Deleted Thread");




				redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);

				redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);

			}
else
{
error_no_permission();
}
}

			}
else
{
error_no_permission();
}
}

		else
{
if($forumpermissions['candeleteposts'] == "yes")

		else
{
if($forumpermissions['candeleteposts'] == "yes")

			{

			{

				// Select the first post before this
delete_post($pid, $tid);

				// Select the first post before this
delete_post($pid, $tid);

				update_thread_count($tid);
update_forum_count($fid);

 
				mark_reports($pid, "post");

				mark_reports($pid, "post");

				if(is_moderator($fid, "candeleteposts") != "yes")
{
log_moderator_action($modlogdata, "Deleted Post");
}

				log_moderator_action($modlogdata, "Deleted Post");




				$query = $db->simple_select(TABLE_PREFIX."posts", "pid", "tid='{$tid}' AND dateline <= '{$post['dateline']}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "desc"));
$next_post = $db->fetch_array($query);
if($next_post['pid'])

				$query = $db->simple_select(TABLE_PREFIX."posts", "pid", "tid='{$tid}' AND dateline <= '{$post['dateline']}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "desc"));
$next_post = $db->fetch_array($query);
if($next_post['pid'])

Zeile 234Zeile 225
			else
{
error_no_permission();

			else
{
error_no_permission();

			}
}
}
else
{
redirect("showthread.php?tid={$tid}", $lang->redirect_nodelete);

			}
}
}
else
{
error($lang->redirect_nodelete);

	}
}


	}
}


Zeile 337Zeile 328
	if($forumpermissions['canpostattachments'] != "no")
{ // Get a listing of the current attachments, if there are any
$attachcount = 0;

	if($forumpermissions['canpostattachments'] != "no")
{ // Get a listing of the current attachments, if there are any
$attachcount = 0;

		if($mybb->input['posthash'])
{
$posthash = "posthash='{$posthash}' OR ";
}
else
{
$posthash = "";
}
$query = $db->simple_select(TABLE_PREFIX."attachments", "*", "{$posthash}pid='{$pid}'");

		if($posthash)
{
$posthash_query = "posthash='{$posthash}' OR ";
}
else
{
$posthash_query = "";
}
$query = $db->simple_select(TABLE_PREFIX."attachments", "*", "{$posthash_query}pid='{$pid}'");

		$attachments = '';
while($attachment = $db->fetch_array($query))
{

		$attachments = '';
while($attachment = $db->fetch_array($query))
{

Zeile 380Zeile 371
		}
$query = $db->query("SELECT SUM(filesize) AS ausage FROM ".TABLE_PREFIX."attachments WHERE uid='".$mybb->user['uid']."'");
$usage = $db->fetch_array($query);

		}
$query = $db->query("SELECT SUM(filesize) AS ausage FROM ".TABLE_PREFIX."attachments WHERE uid='".$mybb->user['uid']."'");
$usage = $db->fetch_array($query);

		if($usage['ausage'] > ($mybb->usergroup['attachquota']*1000) && $mybb->usergroup['attachquota'] != 0)

		if($usage['ausage'] > ($mybb->usergroup['attachquota']*1024) && $mybb->usergroup['attachquota'] != 0)

		{
$noshowattach = 1;
}

		{
$noshowattach = 1;
}

Zeile 390Zeile 381
		}
else
{

		}
else
{

			$friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1000);

			$friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024);

		}
$friendlyusage = get_friendly_size($usage['ausage']);
$lang->attach_quota = sprintf($lang->attach_quota, $friendlyusage, $friendlyquota);

		}
$friendlyusage = get_friendly_size($usage['ausage']);
$lang->attach_quota = sprintf($lang->attach_quota, $friendlyusage, $friendlyquota);

Zeile 420Zeile 411
		eval("\$pollbox = \"".$templates->get("newthread_postpoll")."\";");
}


		eval("\$pollbox = \"".$templates->get("newthread_postpoll")."\";");
}


	if($mybb->input['previewpost'] || $post_errors)

	if($mybb->input['previewpost'] && !$post_errors)

	{

	{

		$previewmessage = $message;
$message = htmlspecialchars_uni($message);
$subject = htmlspecialchars_uni($subject);

$postoptions = $mybb->input['postoptions'];

if($postoptions['signature'] == "yes")
{
$postoptionschecked['signature'] = "checked=\"checked\"";
}
if($postoptions['emailnotify'] == "yes")
{
$postoptionschecked['emailnotify'] = "checked=\"checked\"";











































		// Set up posthandler.
require_once MYBB_ROOT."inc/datahandlers/post.php";
$posthandler = new PostDataHandler("update");
$posthandler->action = "post";

// Set the post data that came from the input to the $post array.
$post = array(
"pid" => $mybb->input['pid'],
"subject" => $mybb->input['subject'],
"icon" => $mybb->input['icon'],
"uid" => $mybb->user['uid'],
"username" => $mybb->user['username'],
"edit_uid" => $mybb->user['uid'],
"message" => $mybb->input['message'],
);

// Set up the post options from the input.
$post['options'] = array(
"signature" => $mybb->input['postoptions']['signature'],
"emailnotify" => $mybb->input['postoptions']['emailnotify'],
"disablesmilies" => $mybb->input['postoptions']['disablesmilies']
);

$posthandler->set_data($post);

// Now let the post handler do all the hard work.
if(!$posthandler->validate_post())
{
$post_errors = $posthandler->get_friendly_errors();
$post_errors = inline_error($post_errors);
$mybb->input['action'] = "editpost";
$mybb->input['previewpost'] = 0;
}
else
{
$previewmessage = $message;
$message = htmlspecialchars_uni($message);
$subject = htmlspecialchars_uni($subject);

$postoptions = $mybb->input['postoptions'];

if($postoptions['signature'] == "yes")
{
$postoptionschecked['signature'] = "checked=\"checked\"";
}
if($postoptions['emailnotify'] == "yes")
{
$postoptionschecked['emailnotify'] = "checked=\"checked\"";
}
if($postoptions['disablesmilies'] == "yes")
{
$postoptionschecked['disablesmilies'] = "checked=\"checked\"";
}

$pid = intval($mybb->input['pid']);

		}

		}

		if($postoptions['disablesmilies'] == "yes")
{
$postoptionschecked['disablesmilies'] = "checked=\"checked\"";
}

$pid = intval($mybb->input['pid']);

 
	}

if($mybb->input['previewpost'])
{
// Figure out the poster's other information.
$query = $db->query("

	}

if($mybb->input['previewpost'])
{
// Figure out the poster's other information.
$query = $db->query("

			SELECT u.*, f.*

			SELECT u.*, f.*, p.dateline

			FROM ".TABLE_PREFIX."users u
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)

			FROM ".TABLE_PREFIX."users u
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)

			WHERE u.uid='".$post['uid']."'


			LEFT JOIN ".TABLE_PREFIX."posts p ON (p.uid=u.uid)
WHERE u.uid='{$post['uid']}' AND p.pid='{$pid}'

			LIMIT 1
");
$postinfo = $db->fetch_array($query);

			LIMIT 1
");
$postinfo = $db->fetch_array($query);

Zeile 460Zeile 488
		while($attachment = $db->fetch_array($query))
{
$attachcache[0][$attachment['aid']] = $attachment;

		while($attachment = $db->fetch_array($query))
{
$attachcache[0][$attachment['aid']] = $attachment;

		}


		}


		// Set the values of the post info array.

		// Set the values of the post info array.

		$postinfo['username'] = $postinfo['username'];

 
		$postinfo['userusername'] = $postinfo['username'];

		$postinfo['userusername'] = $postinfo['username'];

		$postinfo['uid'] = $postinfo['uid'];

 
		$postinfo['message'] = $previewmessage;
$postinfo['subject'] = $subject;
$postinfo['icon'] = $icon;
$postinfo['smilieoff'] = $postoptions['disablesmilies'];

		$postinfo['message'] = $previewmessage;
$postinfo['subject'] = $subject;
$postinfo['icon'] = $icon;
$postinfo['smilieoff'] = $postoptions['disablesmilies'];

		$postinfo['dateline'] = time();

 

$postbit = build_postbit($postinfo, 1);
eval("\$preview = \"".$templates->get("previewpost")."\";");
}


$postbit = build_postbit($postinfo, 1);
eval("\$preview = \"".$templates->get("previewpost")."\";");
}

	elseif(!$post_errors)

	else if(!$post_errors)

	{
$message = htmlspecialchars_uni($message);
$subject = htmlspecialchars_uni($subject);

	{
$message = htmlspecialchars_uni($message);
$subject = htmlspecialchars_uni($subject);

Zeile 487Zeile 512
		if($post['smilieoff'] == "yes")
{
$postoptionschecked['disablesmilies'] = "checked=\"checked\"";

		if($post['smilieoff'] == "yes")
{
$postoptionschecked['disablesmilies'] = "checked=\"checked\"";

		}
// Can we disable smilies or are they disabled already?
if($forum['allowsmilies'] != "no")
{
eval("\$disablesmilies = \"".$templates->get("editpost_disablesmilies")."\";");
}
else
{
$disablesmilies = "<input type=\"hidden\" name=\"postoptions[disablesmilies]\" value=\"no\" />";
}

		}










		$query = $db->simple_select(TABLE_PREFIX."favorites", "*", "type='s' AND tid='{$tid}' AND uid='{$mybb->user['uid']}'");
$subcheck = $db->fetch_array($query);
if($subcheck['tid'])
{
$postoptionschecked['emailnotify'] = "checked=\"checked\"";
}

		$query = $db->simple_select(TABLE_PREFIX."favorites", "*", "type='s' AND tid='{$tid}' AND uid='{$mybb->user['uid']}'");
$subcheck = $db->fetch_array($query);
if($subcheck['tid'])
{
$postoptionschecked['emailnotify'] = "checked=\"checked\"";
}

 
	}

// Can we disable smilies or are they disabled already?
if($forum['allowsmilies'] != "no")
{
eval("\$disablesmilies = \"".$templates->get("editpost_disablesmilies")."\";");
}
else
{
$disablesmilies = "<input type=\"hidden\" name=\"postoptions[disablesmilies]\" value=\"no\" />";

	}

$plugins->run_hooks("editpost_end");

	}

$plugins->run_hooks("editpost_end");