mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 23:37:39 +02:00
[ticket/15403] Fix order of parameters in implode
PHPBB-15403
This commit is contained in:
@@ -399,7 +399,7 @@ function get_context($text, $words, $length = 400)
|
||||
// Get the last fragment
|
||||
$fragments[] = $fragment;
|
||||
|
||||
$output = htmlentities(implode($fragments, ''));
|
||||
$output = htmlentities(implode('', $fragments));
|
||||
}
|
||||
|
||||
return $output;
|
||||
|
Reference in New Issue
Block a user