In the phpbb_api_theme.php file, the following 2 instances of the link to the users inbox have invalid & chars where & should be used on lines 299 and 304.
Minor bug, but causes validation errors. (The correct code is used within phpbb itself for inbox links.)
$str = '<a href="'. $phpbb_url .'/ucp.php?i=pm&folder=inbox">'. $l_privmsgs_text .'</a>';
$str = '<br />'.'<a href="'. $phpbb_url .'/ucp.php?i=pm&folder=inbox">'. $l_privmsgs_text_unread .'</a>';
should be changed to
$str = '<a href="'. $phpbb_url .'/ucp.php?i=pm&folder=inbox">'. $l_privmsgs_text .'</a>';
$str = '<br />'.'<a href="'. $phpbb_url .'/ucp.php?i=pm&folder=inbox">'. $l_privmsgs_text_unread .'</a>';
Thank you. :)
Comments
Comment #1
phreadom commentedArgh... drupal interpreted my ampersand... :(
Let me repost the comment to correct it and make it a little easier to understand.
Comment #2
fizk commented