Sending formdata to server broken in IE7
-
With WordPress 3.8.1, jQuery 1.10.2, plugin 3.7.1 and IE7 only one single POST-param is sent to server:
_wpcf7_is_ajax_call=1
This causes a PHP notice on server:
PHP Notice: Undefined variable: items in /../wp-content/plugins/contact-form-7/includes/controller.php on line 91
Because
$_POST['_wpcf7']
is not set,$items
won’t be set and so$echo = json_encode( $items );
gets
null
as result and this string is sent as (invalid) JSON back to client.The spinner starts to spin (and continues forever), so
beforeSubmit
seems to be called in IE7. Not sure why the other params are not added in IE7.IE8 works fine.
Thanks for suggestions, I know IE7 is outdated, but client has IE7 and says it worked before.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Sending formdata to server broken in IE7’ is closed to new replies.