diff --git a/CHANGELOG.md b/CHANGELOG.md index fa8d95296..d7b18a375 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ - Make post date clickable in `posting.php` [\#1427](https://github.com/torrentpier/torrentpier/pull/1427) ([belomaxorka](https://github.com/belomaxorka)) - Removed `wbr()` [\#1387](https://github.com/torrentpier/torrentpier/pull/1387) ([belomaxorka](https://github.com/belomaxorka)) - Removed converting for legacy md5 passwords [\#1386](https://github.com/torrentpier/torrentpier/pull/1386) ([belomaxorka](https://github.com/belomaxorka)) +- PHP 8.2: Fixed creation of dynamic property [\#1432](https://github.com/torrentpier/torrentpier/pull/1432) ([belomaxorka](https://github.com/belomaxorka)) - Fixed broken searching of attachments via ACP [\#1431](https://github.com/torrentpier/torrentpier/pull/1431) ([belomaxorka](https://github.com/belomaxorka)) - Fixed issue with poll_users cleaning at every cron job startup [\#1390](https://github.com/torrentpier/torrentpier/pull/1390) ([belomaxorka](https://github.com/belomaxorka)) - Fixed Undefined variable $wordCensor [\#1400](https://github.com/torrentpier/torrentpier/pull/1400) ([belomaxorka](https://github.com/belomaxorka)) diff --git a/src/Legacy/Attach.php b/src/Legacy/Attach.php index dc827d5ef..6ac6bea2b 100644 --- a/src/Legacy/Attach.php +++ b/src/Legacy/Attach.php @@ -29,6 +29,17 @@ class Attach public $extension = ''; public $file_comment = ''; + + public $attachment_id_list; + public $attachment_comment_list; + public $attachment_filesize_list; + public $attachment_filetime_list; + public $attachment_filename_list; + public $attachment_extension_list; + public $attachment_mimetype_list; + public $attachment_list; + public $attachment_thumbnail_list; + public $num_attachments = 0; // number of attachments in message public $filesize = 0; public $filetime = 0;