[TYPO3-core] RFC #16902 Bug: Fatal error in tslib_content_text (was: No FE output)

Jeff Segars jsegars at alumni.rice.edu
Tue Feb 22 23:47:31 CET 2011


It looks like the change from tslib_content_image is causing some issues.

> -		if ($this->cObj->checkIf($conf['if.'])) {
> +		if (isset($conf['if.']) && $this->cObj->checkIf($conf['if.'])) {

If $conf['if.'] is not set in a simple IMAGE cObject, then we never get 
inside the if statement to render the image. ->checkIf() does not 
require an array and the other calls to the method do not call isset() 
first, so I would suggest revert this portion of the patch.

Any thoughts?

Thanks,
Jeff


More information about the TYPO3-team-core mailing list