Hi there,
I think I solved this problem. I went into this file:
/wp-content/plugins/constant-contact-api/functions.php
Line 871, replaced this:
$selected_lists = array_unique($_POST['cc_newsletter'], SORT_NUMERIC);
with this:
$selected_lists = $_POST['cc_newsletter'];
Now it seems like the Constant Contact API is happy.
E