Bug #16248 » 3682.patch
typo3_src-4.0/typo3/sysext/install/mod/class.tx_install.php 2006-06-15 19:29:50.000000000 +0200 | ||
---|---|---|
You can change the values in case you have alternatives to the suggested defaults.
|
||
By this final step you will configure TYPO3 for immediate use provided that you have no fatal errors left above."
|
||
.$this->setupGeneral('get_form'),0,1);
|
||
echo $this->outputWrapper($this->printAll());
|
||
break;
|
||
... | ... | |
$value_ext = 'gm';
|
||
} elseif(doubleval($version)<5) { // Assume ImageMagick 4.x
|
||
$value_ext = '';
|
||
} else { // Assume ImageMagick 5+
|
||
} elseif(doubleval($version)>=6) { // Assume ImageMagick 6.x
|
||
$value_ext = 'im6';
|
||
} else { // Assume ImageMagick 5.x
|
||
$value_ext = 'im5';
|
||
}
|
||
if (strcmp(strtolower($GLOBALS['TYPO3_CONF_VARS']['GFX']['im_version_5']),$value_ext)) {
|
||
... | ... | |
$formArray['im_path']=array($path);
|
||
$found=1;
|
||
}
|
||
} elseif (doubleval($dat['convert'])>=6) {
|
||
$formArray['im_version_5']=array('im6');
|
||
if ($dat['gif_capability']=='LZW') {
|
||
$formArray['im_path']=array($path);
|
||
$found=2;
|
||
} elseif ($found<2) {
|
||
$formArray['im_path']=array($path);
|
||
$found=1;
|
||
}
|
||
} elseif (!$found) {
|
||
$formArray['im_version_5']=array('im5');
|
||
$formArray['im_path']=array($path);
|