Hey Guys,
in v1.5 gravityforms.php, method get_addon_info, line 865:
$raw_response = wp_remote_post($request_url, $options);
should be:
$raw_response = wp_remote_post($request_url, $args);
Hey Guys,
in v1.5 gravityforms.php, method get_addon_info, line 865:
$raw_response = wp_remote_post($request_url, $options);
should be:
$raw_response = wp_remote_post($request_url, $args);
Thanks for the heads up! The $options parameter is actually not needed in this case. I removed it from my dev version.