1234567891011121314151617181920212223242526272829303132 |
- <?php
- #declare(strict_types=1);
-
- $PostID = (int) $_GET['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();
- if (!Forums::check_forumperm($ForumID)) {
- json_die('error', 'assholes');
- }
-
- json_die('success', array('body' => nl2br($Body)));
|