mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gazelle;
|
|
|
|
$body = (new Manager\Comment())->findBodyById((int)($_GET['postid'] ?? 0));
|
|
if (is_null($body)) {
|
|
Error404::error();
|
|
}
|
|
|
|
header('Content-type: text/plain');
|
|
echo $body;
|