Skip to content

Commit 81132e9

Browse files
authored
Merge pull request #129 from kim3-sudo/patch-1
Fix PHP syntax error
2 parents e2b331a + af62f9f commit 81132e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/incident.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static function add()
8484
$user_id = $_SESSION['user'];
8585
$type = $_POST['type'];
8686
$title = strip_tags($_POST['title']);
87-
$text = strip_tags($_POST['text'], '<br>')
87+
$text = strip_tags($_POST['text'], '<br>');
8888

8989
if (strlen($title)==0)
9090
{

0 commit comments

Comments
 (0)