Merge pull request #129 from kim3-sudo/patch-1

Fix PHP syntax error
This commit is contained in:
Vojtěch Sajdl 2020-10-05 23:55:36 +02:00 committed by GitHub
commit 81132e9ccf
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)
{