Active
Project:
Clickpath
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Feb 2010 at 15:13 UTC
Updated:
14 Jan 2011 at 18:35 UTC
Appears to leave an open italic that italicizes the rest of the page. Seen mostly when using revisioning or translations (which italicize temporarily for the sake of emphasis).
Comments
Comment #1
tezalsec commentedsubscribe +1
Comment #2
prabhakarsun commentedIt happens when title contains HTML, and is longer than "Limit titles to a specific length" setting of clickpath, as _clickpath_truncate_title function doesn't strip html of tags. To resolve this;
replace
$title = substr($title, 0, $length) . '…';with
$title = substr(strip_tags($title), 0, $length) . '…';at line number 152.