Closed (duplicate)
Project:
Page Title
Version:
5.x-2.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Jul 2009 at 15:16 UTC
Updated:
11 Nov 2009 at 02:24 UTC
See: http://drupal.org/node/456256 "" in title"
I have this problem on my D5.x site as well: page titles incorrectly appear with the HTML for quotation marks etc.
Changing line 430 from return check_plain(strip_tags($title)); to return strip_tags($title); solved it for me. (Not sure if I should have modified the status of the original report or not -- apologies and thanks for a great module.)
Comments
Comment #1
sgdev commentedI can confirm this fix worked for me too. Thanks for sharing.
Comment #2
avpadernoTo pass the title string to
check_plain()is something that also Drupal core code does; see aggregator_page_source(), book_admin_edit(), contact_user_page().Comment #3
chriso commentedI'm marking this as a duplicate of #124169: HTML entities double-escaped in titles -- as there is active discussion over there about it.
FWIW the fix above works for me too.