Index: typo3/sysext/cms/tslib/class.tslib_gifbuilder.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_gifbuilder.php (revision 10317) +++ typo3/sysext/cms/tslib/class.tslib_gifbuilder.php (revision ) @@ -277,7 +277,7 @@ foreach ($sKeyArray as $theKey) { $theValue=$this->setup[$theKey]; - if (intval($theKey) && $conf=$this->setup[$theKey.'.']) { + if (intval($theKey) && $conf = $this->setup[$theKey.'.']) { switch($theValue) { case 'TEXT': case 'IMAGE': @@ -406,6 +406,7 @@ foreach($sKeyArray as $theKey) { $theValue=$this->setup[$theKey]; if (intval($theKey) && $conf=$this->setup[$theKey.'.']) { + t3lib_div::debug($conf); $isStdWrapped = array(); foreach($conf as $key => $value) { $parameter = rtrim($key,'.'); @@ -461,6 +462,7 @@ $this->makeOutline($this->im,$conf['outline.'],$this->workArea,$conf); } $conf['imgMap']=1; + t3lib_div::debug($conf); $this->makeText($this->im,$conf,$this->workArea); } break; @@ -565,14 +567,6 @@ * @access private */ function checkTextObj($conf) { - $isStdWrapped = array(); - foreach($conf as $key => $value) { - $parameter = rtrim($key,'.'); - if(!$isStdWrapped[$parameter] && isset($conf[$parameter.'.'])) { - $conf[$parameter] = $this->cObj->stdWrap($conf[$parameter], $conf[$parameter.'.']); - $isStdWrapped[$parameter] = 1; - } - } $conf['fontFile']=$this->checkFile($conf['fontFile']); if (!$conf['fontFile']){$conf['fontFile']='t3lib/fonts/nimbus.ttf';} if (!$conf['iterations']){$conf['iterations'] = 1;}