Warnings generated when using PHP 8.
-
When using the plugin with PHP 8, the following warning is generated multiple times in the site’s PHP error log:
PHP Warning: Undefined array key "admin_label" in /home/SITE_ROOT/public_html/wp-content/plugins/popups-for-divi/includes/core/class-pfd-editor.php on line 540
The relevant line of code has a conditional that looks like this:
... $attrs['admin_label'] && ...
I think the issue can be fixed by just doing something like:
... isset($attrs['admin_label']) && ...
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Warnings generated when using PHP 8.’ is closed to new replies.