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
+1 -1
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)
{