mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
18 lines
511 B
PHP
18 lines
511 B
PHP
<?
|
|
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);
|
|
}
|
|
|
|
if ($LoggedUser['DisablePosting']) {
|
|
error('Your posting privileges have been removed.');
|
|
}
|
|
|
|
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']); |