Bug #22605
closedt3lib_div::imageMagickCommand incorrectly change parameters order
0%
Description
t3lib_div::imageMagickCommand incorrectly change parameters order due to wrong logic in t3lib_div::unQuoteFilenames.
Existing version merge two parameters quoted by " symbol if first parameter don't contain whitespace: "filename1" "filename2" -> "filename1 filename2"
install typo3 in environment where all paths are without spaces
use GM
InstallTool -> ImageProcessing check -> Combining Images OR GD library function
Resolution:
class.t3lib_div.php line 5667: function unQuoteFilenames
regEx
elseif(preg_match('/^"/', $v))
need to be changed to
elseif(preg_match('/^".*[^"]$/', $v))
(issue imported from #M14329)
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0)
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Updated by Alexander Opitz about 11 years ago
- Status changed from Needs Feedback to Closed
- Is Regression set to No
No feedback for over 90 days.