2013-08-28 23:08:41 +00:00
|
|
|
<?
|
|
|
|
authorize();
|
|
|
|
|
|
|
|
include(SERVER_ROOT . '/classes/text.class.php'); // Text formatting class
|
|
|
|
$Text = new TEXT;
|
|
|
|
|
|
|
|
if (!isset($_POST['postid']) || !is_number($_POST['postid']) || !isset($_POST['body']) || trim($_POST['body']) === '') {
|
|
|
|
error(0);
|
|
|
|
}
|
|
|
|
|
2013-11-25 08:00:49 +00:00
|
|
|
if ($LoggedUser['DisablePosting']) {
|
|
|
|
error('Your posting privileges have been removed.');
|
|
|
|
}
|
|
|
|
|
2013-08-28 23:08:41 +00:00
|
|
|
Comments::edit((int)$_POST['postid'], $_POST['body']);
|
|
|
|
|
|
|
|
// This gets sent to the browser, which echoes it in place of the old body
|
|
|
|
echo $Text->full_format($_POST['body']);
|