Skip to content

Commit

Permalink
Fix PHP 8.0 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanCoding committed Oct 31, 2021
1 parent 9a8de27 commit 4441ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tls_icon.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function init()

public function storage_init($p)
{
$p['fetch_headers'] = trim($p['fetch_headers'] . ' ' . strtoupper('Received'));
$p['fetch_headers'] = trim(($p['fetch_headers']?? '') . ' ' . strtoupper('Received'));
return $p;
}

Expand Down

0 comments on commit 4441ce8

Please sign in to comment.