mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
PHP 8.2: Fixed creation of dynamic property (#1432)
* PHP 8.2: Fixed creation of dynamic property * Update CHANGELOG.md
This commit is contained in:
parent
b952ec7158
commit
2898887806
2 changed files with 12 additions and 0 deletions
|
@ -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))
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue