Project

General

Profile

Actions

Bug #22471

closed

Automatic line breaks in GIFBUILDER occur after characters like ' % ...

Added by Jack Skaba almost 14 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
Communication
Target version:
-
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

14132_trunk.patch (653 Bytes) 14132_trunk.patch Administrator Admin, 2010-05-11 15:20

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Feature #20164: Integrate automatic line breaks in GIFBUILDERClosedOliver Hader2009-03-11

Actions
Actions

Also available in: Atom PDF