Project

General

Profile

Actions

Bug #22605

closed

t3lib_div::imageMagickCommand incorrectly change parameters order

Added by Sergey Vorobyov over 14 years ago. Updated about 11 years ago.

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)


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #22514: imageMagickCommand parameters incorrectly swappedClosed2010-04-26

Actions
Actions #1

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)?

Actions #2

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.

Actions

Also available in: Atom PDF