Deprecated: Creation of dynamic property

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
krolli
Posts: 8
Joined: Tue Feb 01, 2022 6:48 pm

Deprecated: Creation of dynamic property

Post by krolli »

Hey!

Code: Select all

PHP Deprecated:  Creation of dynamic property PJ_SecurityImage::$code is deprecated in /inc/secimg.inc.php on line 22
PHP Deprecated:  Creation of dynamic property PJ_SecurityImage::$key is deprecated in /inc/secimg.inc.php on line 23
Declare them explicitly, otherwise in PHP 9.0 it will throw fatal error.

Thanks! :)
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: Deprecated: Creation of dynamic property

Post by Klemen »

Your Debug mode should be off for live use :D

Thanks for the heads-up. What you can make to fix this is add

Code: Select all

#[AllowDynamicProperties]
just before

Code: Select all

class PJ_SecurityImage
in /inc/secimg.inc.php,

Code: Select all

#[AllowDynamicProperties]
class PJ_SecurityImage
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
krolli
Posts: 8
Joined: Tue Feb 01, 2022 6:48 pm

Re: Deprecated: Creation of dynamic property

Post by krolli »

Thank you! :)
Post Reply