[Plugin: Contact Form 7] WP_DEBUG error — easy fix, has-patch
-
In ~/modules/submit.php
lines 14&15:
$options = (array) $tag['options']; $values = (array) $tag['values'];
are causing errors:
Notice: Undefined index: options in /wp-content/plugins/contact-form-7/modules/submit.php on line 14 Notice: Undefined index: values in /wp-content/plugins/contact-form-7/modules/submit.php on line 15
please change to
$options = (array) isset($tag['options'])?$tag['options']:array(); $values = (array) isset($tag['values'])?$tag['values']:array();
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Contact Form 7] WP_DEBUG error — easy fix, has-patch’ is closed to new replies.