PHP Error in Version 6.5
-
PHP Warning: Undefined array key "label" in /www/site_name/public/wp-content/plugins/cleantalk-spam-protect/inc/cleantalk-public-integrations.php on line 2444
I’m getting this error that’s preventing my forms from submitting. it’s caused by this code in line 2444.
$field_label = $form_field['label'] ?: '';
It should be
$field_label = $form_field['label'] ?? '';
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘PHP Error in Version 6.5’ is closed to new replies.