Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.6
-
Fix Version/s: 1.7.7
-
Component/s: Zend_Text_Table
-
Labels:None
-
Tags:
Description
When you try to do something like this:
$line = Zend_Text_MultiByte::wordWrap('abcdef', 2, ' ', true, 'utf-8');
you'll get "ab cd cdef". But expected result is "ab cd ef".
The problem actually is in line 62 of Zend/Text/MultiByte.php:
$line = substr($string, strlen($matches[0]));
$string is the first parameter for the method wordWrap(). In cycle this code always cuts part from input string, but not from actual value. It should be:
$line = substr($line, strlen($matches[0]));