[Typo3-dev] small things

Volker Graubaum vg_typo3 at e-netconsulting.de
Thu Nov 18 14:21:49 CET 2004


Hi,

I was searching for an error in different files, and while searching I 
found this row in class t3lib_stdGraphic in function imageMagickConvert

if (!$this->file_exists_typo3temp_file($output,$imagefile) || 
$this->dontCheckForExistingTempFile) {
	$this->imageMagickExec($imagefile.$frame,$output,$command);
}

this could be better

if ($this->dontCheckForExistingTempFile || 
!$this->file_exists_typo3temp_file($output,$imagefile)) { ...

because if will not proof it the file exists if it doesn't matter, and
an sql select fewer is done.

My question: where should I send such points, that it could be changed? 
Is Bugtracker the right place?

Greetings Volker




More information about the TYPO3-dev mailing list