Bug #18513
closedimagegeneration does not work with im_path set to a path with whitespaces
0%
Description
after installing TYPO3 into this path:
"D:\Programme\TYPO3 Winstaller\htdocs\Testsite\"
i noticed that $this->cObj->IMAGE returns only an empty image.
through debugging i found out that the problem can be fixed by wrapping the im_path (which is set in the install-tool) with doublequotes:
// line 5050 in class.t3lib_div.php
if(!$path) { $path = "\"".$gfxConf['im_path']."\""; }
//old version
if(!$path) { $path = $gfxConf['im_path']; }
(issue imported from #M7967)
Updated by Chris topher over 14 years ago
Solved with #12218?
=> Does it work with TYPO3 4.3 and newer?
Updated by Stephan Petzl over 14 years ago
I think so. I never could reproduce this problem again with newer Typo3Winstaller versions. Currently I have no Winstaller running, so I can't tell for sure...
BR Stephan
Updated by Tolleiv Nietsch over 13 years ago
- Status changed from Needs Feedback to Closed
- Target version deleted (
0) - TYPO3 Version set to 4.2
Closing this for the sake of a clean bugtracker - feel free to open it again once you're able to provide new input.