mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
[ticket/15403] Fix order of parameters in implode
PHPBB-15403
This commit is contained in:
parent
350c9213ee
commit
a2e7205154
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue