In my menu I am using "Service & Contact" and the & (ampersand) is not properly encoded as & and so the HTML validator reports an error. I did a quick and dirty hack and modified the two files on my own. Here is what I did:
function.title.php
Line 31:
Code: Select all
$result = htmlspecialchars($pageinfo->content_title);
function.breadcrumbs.php
Line 109:
Code: Select all
$trail .= htmlspecialchars(($onecontent->MenuText()!=''?$onecontent->MenuText():$onecontent->Name()));
Code: Select all
$trail .= htmlspecialchars(($onecontent->MenuText()!=''?$onecontent->MenuText():$onecontent->Name()));
Regards,
Nils