Quote:
Originally Posted by Dave
@Scimia
I fixed that error for someone not too long ago.
Open the file /mailchimp/MailChimpSubs.php
Around line 127 you have:
Code:
$qry = "INSERT INTO " . TABLE_PREFIX . "kws_mailchimp_log values(NULL,now(),'C',NULL,'".serialize($this->errors_arr)."')";
Replace with:
Code:
$qry = "INSERT INTO " . TABLE_PREFIX . "kws_mailchimp_log values(NULL,now(),'C',NULL,'".$vbulletin->db->escape_string(serialize($this->errors_arr))."')";
|
Thank you so much, now with this fix the plugin works!