This page contains error:
Docs error: Paypal gform_paypal_post_ipn
Replace this code:
// if the IPN was canceled, don't process
if(!$cancel)
return;
With this:
// if the IPN was canceled, don't process
if($cancel)
return;
Gleb