phpmaker: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING

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!

  1. Lieber phpmaker,

    ('&amp;', ''', '&quot;', '&lt;', '&gt;')

    was soll der Parser aus ''' machen? Drei solche Zeichen ergeben für ihn keinen Sinn...

    Liebe Grüße aus Ellwangen,

    Felix Riesterer.

    1. Hallo Felix,
      Dnake fuer deine Hilfe!
      Das hab ich doch glatt uebersehen...