Merge pull request #215 from antedeguemon/master

Prevents reports with too many characters
This commit is contained in:
Marcin Łabanowski
2017-07-23 17:55:22 +02:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -287,6 +287,9 @@ if (isset($_POST['delete'])) {
if (empty($report))
error($config['error']['noreport']);
if (strlen($report) > 30)
error($config['error']['invalidreport']);
if (count($report) > $config['report_limit'])
error($config['error']['toomanyreports']);