phpmaker: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING

Beitrag lesen

Hallo,
Ich bekomme immer nur diese Meldung:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in C:\Programme\Apache Group\Apache2\htdocs\phpBB2\includes\usercp_viewprofile.php on line 178
Der Quellcode:
if (function_exists('get_html_translation_table'))
{
   $u_search_author = urlencode(strtr($profiledata['username'], array_flip(get_html_translation_table(HTML_ENTITIES))));
}
else
{
   $u_search_author = urlencode(str_replace(array('&amp;', ''', '&quot;', '&lt;', '&gt;'), array('&', "'", '"', '<', '>'), $profiledata['username']));
}
Was ist falsch?
Danke!