Do not wrap text if unknown characters are found.

This commit is contained in:
Shoghi Cervantes 2014-10-15 18:38:14 +02:00
parent 500a690cd0
commit 204915450f

View File

@ -70,6 +70,8 @@ abstract class TextWrapper{
++$lineLength; ++$lineLength;
$lineWidth += $width; $lineWidth += $width;
}else{
return $text;
} }
$result .= $char; $result .= $char;