If you click Preview on the page admin/subscribed/enewsletter, you get:

warning: Invalid argument supplied for foreach() in /home/[redacted]/public_html/includes/form.inc on line 1211.

The problem is in system.module, line 1090

  $form['recipients']['roles'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Roles'),
//    '#default_value' => $roles_selected,
    '#options' => $roles,
  ); 

The variable $roles_selected does not appear to be defined anywhere. Comment out the line as indicated and the error disappears.

Comments

DrewMathers’s picture

Correction: The above code is from subscribed.module, line 1090, not system.module

robert castelo’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.