Page 1 of 1

Deprecated: Creation of dynamic property

Posted: Tue May 16, 2023 1:29 pm
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! :)

Re: Deprecated: Creation of dynamic property

Posted: Tue May 16, 2023 3:22 pm
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

Re: Deprecated: Creation of dynamic property

Posted: Wed May 17, 2023 3:08 pm
by krolli
Thank you! :)