Closed (duplicate)
Project:
Mailchimp
Version:
6.x-2.4
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Mar 2011 at 15:31 UTC
Updated:
8 Mar 2011 at 23:07 UTC
This occurred after upgrading to 6.x-2.4.
The title is set to "Newsletter Subscriptions" on all pages when a user is logged in. Seems that it's set on line 179 in mailchimp.module.
| Comment | File | Size | Author |
|---|---|---|---|
| mailchimp_title.png | 28.21 KB | persand |
Comments
Comment #1
havran commentedSame issue on my page.
Comment #2
kenwen commented+1
same here
Comment #3
pxlar8 commentedSame issue here.
Comment #4
shaundychkoYep, I can also report this issue. Not sure how to trouble-shoot this one. When the page is reloaded the title reverts to the correct one, but this initially incorrect title is very confusing for users.
Comment #5
danyg commentedHi,
problem is from mailchimp_block() fuction, the content uses wrong parameter list.
It's missing the last "FALSE".
at line 1078 change
$block['content'] = drupal_get_form('mailchimp_subscribe_auth_form_' . $list->id, $user, 1, $list);
to
$block['content'] = drupal_get_form('mailchimp_subscribe_auth_form_' . $list->id, $user, 1, $list, FALSE);
That's it.
Comment #6
iantresman commentedCan anyone conform that this fixes all titles, except the title on the
/userpage, which should have the logged-in user's username as the title.Comment #7
jim kirkpatrick commentedThis is a biggie... Confirming fix in #5 works and should be committed asap.
Comment #8
iantresman commentedDoes the fix in #5, also fix the title on the /user page?
Comment #9
jim kirkpatrick commentedDoes for us...
Comment #10
jim kirkpatrick commentedComment #11
drumm#1041052: Sign-up block makes all page titles 'Newsletter Subscriptions' when logged in
This has been fixed in the development version.