In function _simplenews_subscription_manager_form()

    $form['subscriptions']['#title'] = t('Subscriptions for %mail', array('%mail' => $subscription->mail));
    $form['subscriptions']['mail'] = array('#type' => 'value', '#value' => $subscription->mail);

should probably be

    $form['subscriptions']['#title'] = t('Subscriptions for %mail', array('%mail' => $user->mail));
    $form['subscriptions']['mail'] = array('#type' => 'value', '#value' => $user->mail);

Comments

sutharsan’s picture

Is this patch solving an problem? Please describe the problem
I believe the problem may be solved with issue 112191.

sutharsan’s picture

Status: Active » Closed (won't fix)