Browse Source

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

tags/2.0.20
Alexander Kartavenko 5 years ago committed by Alexander Makarov
parent
commit
30e10837ba
  1. 2
      framework/CHANGELOG.md
  2. 2
      framework/helpers/BaseConsole.php

2
framework/CHANGELOG.md

@ -4,7 +4,7 @@ Yii Framework 2 Change Log
2.0.20 under development
------------------------
- no changes in this release.
- Bug #16509: Fixed console command help text wordwrap for multi-byte strings (alexkart)
2.0.19 May 21, 2019

2
framework/helpers/BaseConsole.php

@ -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) {

Loading…
Cancel
Save