From 57472eab3c7b035392c6a5aa240593ecaa7d1ccf Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Mon, 8 Dec 2025 21:53:36 +0500 Subject: upd: moved all /public/ files to the root folder --- public/report/list.php | 81 -------------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 public/report/list.php (limited to 'public/report/list.php') diff --git a/public/report/list.php b/public/report/list.php deleted file mode 100644 index f02731a..0000000 --- a/public/report/list.php +++ /dev/null @@ -1,81 +0,0 @@ -prepare("SELECT * FROM reports WHERE sender_id = ? ORDER BY sent_at DESC"); -$stmt->execute([$_SESSION["user_id"]]); - -$reports = $stmt->fetchAll(PDO::FETCH_ASSOC); -?> - - - - - Report list - <?php echo INSTANCE_NAME ?> - - - - - -
-
- -
-
- -
- - - - - - - '; - - echo ''; - - echo ''; - - echo ''; - - echo ''; - } - ?> -
ContentsStatus
' . substr($report["contents"], 0, 20) . "..."; - echo ' (' . format_timestamp(time() - strtotime($report["sent_at"])) . ' ago)'; - echo ''; - echo $report["resolved_by"] == null ? "Unresolved" : "Resolved"; - echo ''; - echo '[ View ]'; - echo '
-
-
-
-
-
- - - \ No newline at end of file -- cgit v1.2.3