Skip to content

Commit

Permalink
php8 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
rudiedirkx committed Dec 19, 2023
1 parent 10fd0a0 commit 55d42e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transition.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

if ( isset($_POST['status'], $_POST['comment']) ) {
$status = trim($_POST['status']);
$resolution = trim(@$_POST['resolution']);
$resolution = trim($_POST['resolution'] ?? '');
$comment = trim($_POST['comment']);

$update = array();
Expand Down

0 comments on commit 55d42e4

Please sign in to comment.