Wanneer iemand vanaf http://www.microlight.nl/phpSecurePages ... search.php iets zoekt, vindt en op de link klikt zodat het item wordt geopend, verschijnt de volgende foutmelding:
Fatal error: Call to undefined function: phpbb_rtrim() in /phpBB2/viewtopic.php on line 592
Code: Selecteer alles
//
// Was a highlight request part of the URI?
//
$highlight_match = $highlight = '';
if (isset($HTTP_GET_VARS['highlight']))
{
// Split words and phrases
$words = explode(' ', trim(htmlspecialchars(urldecode($HTTP_GET_VARS['highlight']))));
for($i = 0; $i < sizeof($words); $i++)
{
if (trim($words[$i]) != '')
{
$highlight_match .= (($highlight_match != '') ? '|' : '') . str_replace('*', '\w*', phpbb_preg_quote($words[$i], '#'));
}
}
unset($words);
$highlight = urlencode($HTTP_GET_VARS['highlight']);
$highlight_match = phpbb_rtrim($highlight_match, "\\");
}
Iemand enig idee?
Met vriendelijke groeten,
Willem-Jan Vroom