mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
30 lines
551 B
PHP
30 lines
551 B
PHP
<?
|
|
|
|
include(SERVER_ROOT . "/sections/forums/functions.php");
|
|
|
|
$PostID = (int)$_POST['postid'];
|
|
|
|
if (empty($PostID)) {
|
|
json_die("error", "empty postid");
|
|
}
|
|
|
|
$DB->query("
|
|
SELECT t.ForumID, p.Body
|
|
FROM forums_posts AS p
|
|
JOIN forums_topics AS t ON p.TopicID = t.ID
|
|
WHERE p.ID = '$PostID'");
|
|
|
|
if (!$DB->has_results()) {
|
|
json_die("error", "no results");
|
|
}
|
|
|
|
list($ForumID, $Body) = $DB->next_record();
|
|
$Forums = get_forums();
|
|
if (!check_forumperm($ForumID)) {
|
|
json_die("error", "assholes");
|
|
}
|
|
|
|
json_die("success", array("body" => nl2br($Body)));
|
|
|
|
?>
|