Hello. Sendy crashes (fails to save a subscriber, but sends out confirmation emails) if any of the custom fields contains quotes.
Fix: in subscribe php update line 169 from:
$cf_vals .= $value;
to
$cf_vals .= mysql_real_escape_string($value);
Hello. Sendy crashes (fails to save a subscriber, but sends out confirmation emails) if any of the custom fields contains quotes.
Fix: in subscribe php update line 169 from:
$cf_vals .= $value;
to
$cf_vals .= mysql_real_escape_string($value);