Bug #21165 » 12090_followup_trunk_and_42.diff
t3lib/thumbs.php (working copy) | ||
---|---|---|
}
|
||
/**
|
||
* Wrapping the input filename in double-quotes
|
||
* Escapes a file name so it can safely be used on the command line.
|
||
*
|
||
* @param string $inputName filename to safeguard, must not be empty
|
||
*
|
||
* @param string Input filename
|
||
* @return string The output wrapped in "" (if there are spaces in the filepath)
|
||
* @access private
|
||
* @return string $inputName escaped as needed
|
||
*/
|
||
function wrapFileName($inputName) {
|
||
if (strstr($inputName,' ')) {
|
||
$inputName='"'.$inputName.'"';
|
||
}
|
||
return $inputName;
|
||
protected function wrapFileName($inputName) {
|
||
return escapeshellarg($inputName);
|
||
}
|
||
}
|
||