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.

CommentFileSizeAuthor
mailchimp_title.png28.21 KBpersand

Comments

havran’s picture

Same issue on my page.

kenwen’s picture

+1

same here

pxlar8’s picture

Same issue here.

shaundychko’s picture

Yep, 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.

danyg’s picture

Hi,

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.

iantresman’s picture

Can anyone conform that this fixes all titles, except the title on the /user page, which should have the logged-in user's username as the title.

jim kirkpatrick’s picture

Priority: Normal » Major

This is a biggie... Confirming fix in #5 works and should be committed asap.

iantresman’s picture

Does the fix in #5, also fix the title on the /user page?

jim kirkpatrick’s picture

Status: Active » Reviewed & tested by the community

Does for us...

jim kirkpatrick’s picture

Title: Title set to "Newsletter Subscriptions" on all pages for logged in users » Title set to "Newsletter Subscriptions" on all pages for logged in users when enabling MC block
drumm’s picture

Status: Reviewed & tested by the community » Closed (duplicate)