Fix PHP syntax error

Added a semicolon that allows fresh installations on *NIX to work properly with PHP 7.2+
This commit is contained in:
Sejin Kim 2020-10-05 17:34:27 -04:00 committed by GitHub
parent e2b331a039
commit af62f9f49d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class Incident implements JsonSerializable
$user_id = $_SESSION['user'];
$type = $_POST['type'];
$title = strip_tags($_POST['title']);
$text = strip_tags($_POST['text'], '<br>')
$text = strip_tags($_POST['text'], '<br>');
if (strlen($title)==0)
{