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).
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.