Skip to content

Commit

Permalink
Fix PHP8 warning (#9238)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Dec 4, 2023
1 parent 3f33433 commit 12a321b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Enigma: Fix finding of a private key when decrypting a message using GnuPG v2.3
- Fix page jump menu flickering on click (#9196)
- Update to TinyMCE 5.10.9 security release (#9228)
- Fix PHP8 warning (#9235)
- Fix PHP8 warnings (#9235, #9238)

## Release 1.6.5

Expand Down
2 changes: 1 addition & 1 deletion program/actions/mail/attachment_upload.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function run($args = [])

if (
$host == $url['host']
&& $port == $url['port']
&& $port == ($url['port'] ?? null)
&& $rcmail->get_user_name() == rawurldecode($url['user'])
) {
$message = new rcube_message($params['_uid'], $params['_mbox']);
Expand Down

0 comments on commit 12a321b

Please sign in to comment.