Actions
Bug #22471
closedAutomatic line breaks in GIFBUILDER occur after characters like ' % ...
Start date:
2010-04-15
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
problems with regexp in
protected function getWordPairsForLineBreak($string)
in file class.t3lib_stdgraphic.php
$wordsArray = preg_split('#([ -.,:]+)#', $string, -1, PREG_SPLIT_DELIM_CAPTURE);
should probably be
$wordsArray = preg_split('#([ \-.,:]+)#', $string, -1, PREG_SPLIT_DELIM_CAPTURE);
#([ -.,:]+)#
the dash should be escaped otherwise it matches all characters between Space and dot like ! " # $ % & ' ( ) * + , - .
to reproduce it - just i.e. print_r(&wordsArray) and use one of the characters above in Gifbuilder (for example d'Artagnan).
(issue imported from #M14132)
Files
Actions