+2007-09-18 Oliver Hader <oh@inpublica.de>
+
+ * (minor) Fixed bug #65: Thumbnails in Element Browser are only displayed if fileSuffix is lowercase
+
2007-09-18 Bernhard Kraft <kraftb@kraftb.at>
* Hide empty dynTabs in tceforms
$fI=pathinfo($filepath);
// Thumbnail/size generation:
- if (t3lib_div::inList($GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],$fI['extension']) && !$noThumbs) {
+ if (t3lib_div::inList(strtolower($GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext']),strtolower($fI['extension'])) && !$noThumbs) {
$imgInfo = $imgObj->getImageDimensions($filepath);
$pDim = $imgInfo[0].'x'.$imgInfo[1].' pixels';
$clickIcon = t3lib_BEfunc::getThumbNail($BACK_PATH.'thumbs.php',$filepath,'hspace="5" vspace="5" border="1"');