Closed (won't fix)
Project:
Simplenews
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Feb 2007 at 06:54 UTC
Updated:
7 May 2007 at 18:38 UTC
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
Comment #1
sutharsan commentedIs this patch solving an problem? Please describe the problem
I believe the problem may be solved with issue 112191.
Comment #2
sutharsan commented