mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-28 01:10:51 +01:00
Oops forgot a file
This commit is contained in:
parent
83d74fdf69
commit
06570f8560
21
report.php
Normal file
21
report.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
include 'inc/functions.php';
|
||||
$global = isset($_GET['global']);
|
||||
$post = (isset($_GET['post']) ? $_GET['post'] : false);
|
||||
$board = (isset($_GET['board']) ? $_GET['board'] : false);
|
||||
|
||||
if (!$post || !preg_match('/^delete_\d+$/', $post) || !$board || !openBoard($board)) {
|
||||
header('HTTP/1.1 400 Bad Request');
|
||||
error(_('Bad request.'));
|
||||
}
|
||||
|
||||
if ($config['report_captcha']) {
|
||||
include '8chan-captcha/functions.php';
|
||||
|
||||
$captcha = generate_captcha($config['captcha']['extra']);
|
||||
} else {
|
||||
$captcha = null;
|
||||
}
|
||||
|
||||
$body = Element('report.html', ['global' => $global, 'post' => $post, 'board' => $board, 'captcha' => $captcha, 'config' => $config]);
|
||||
echo Element('page.html', ['config' => $config, 'body' => $body]);
|
Loading…
Reference in New Issue
Block a user