Actions
Bug #22605
closedt3lib_div::imageMagickCommand incorrectly change parameters order
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-05-07
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
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)
Actions