X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/2d7b510a9d33a552b024e1db00212658f21afce6..ecfc420d52ce7983a6361ccc7dec24fd46ec2d07:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 55ea273..df1aa68 100644 --- a/issue/index.php +++ b/issue/index.php @@ -66,7 +66,10 @@ if ($Page->api) return; if ($_POST and isset($_POST['subject'])) { require_once 'upload.inc.php'; if (strlen($_POST['subject']) < 2) { - throw new Exception('Een minimaal onderwerp is verplicht om een issue aan te maken.'); + throw new Exception('Vul een onderwerp in om de issue te kunnen benoemen.'); + } + if (!preg_match('/\S/', $_POST['reply'])) { + throw new Exception('Een korte beschrijving is verplicht om een issue aan te maken.'); } $query = $Db->set('issues', [ 'page' => $Page->handler,