Fixes #16509: Fixed console command help text wordwrap for multi-byte strings

This commit is contained in:
Alexander Kartavenko
2019-05-22 14:42:12 +03:00
committed by Alexander Makarov
parent a0b89f9271
commit 30e10837ba
2 changed files with 2 additions and 2 deletions

View File

@ -684,7 +684,7 @@ class BaseConsole
return $text;
}
$pad = str_repeat(' ', $indent);
$lines = explode("\n", wordwrap($text, $size[0] - $indent, "\n", true));
$lines = explode("\n", wordwrap($text, $size[0] - $indent, "\n"));
$first = true;
foreach ($lines as $i => $line) {
if ($first) {