* Fixed bug #6462: Wrong default locale charset on Windows
* Fixed bug #6032: Freeing SQL result sets
* Fixed bug #6252: rteHTMLarea acronyms are not DBAL compatible
* Fixed bug #6462: Wrong default locale charset on Windows
* Fixed bug #6032: Freeing SQL result sets
* Fixed bug #6252: rteHTMLarea acronyms are not DBAL compatible
+ * Fixed bug #5189: images with uppercase file extension aren't displayed in drag-n-drop listing
2007-10-01 Bernhard Kraft <kraftb@kraftb.at>
2007-10-01 Bernhard Kraft <kraftb@kraftb.at>
/***************************************************************
* Copyright notice
*
/***************************************************************
* Copyright notice
*
-* (c) 1999-2005 Kasper Skaarhoj (kasperYYYY@typo3.com)
+* (c) 1999-2007 Kasper Skaarhoj (kasperYYYY@typo3.com)
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
// Fraverse files:
while(list(,$filepath)=each($files)) {
// Fraverse files:
while(list(,$filepath)=each($files)) {
- $fI=pathinfo($filepath);
+ $fI = pathinfo($filepath);
// URL of image:
$iurl = $this->siteURL.t3lib_div::rawurlencodeFP(substr($filepath,strlen(PATH_site)));
// Show only web-images
// URL of image:
$iurl = $this->siteURL.t3lib_div::rawurlencodeFP(substr($filepath,strlen(PATH_site)));
// Show only web-images
- if (t3lib_div::inList('gif,jpeg,jpg,png',$fI['extension'])) {
+ if (t3lib_div::inList('gif,jpeg,jpg,png',strtolower($fI['extension']))) {
$imgInfo = @getimagesize($filepath);
$pDim = $imgInfo[0].'x'.$imgInfo[1].' pixels';
$imgInfo = @getimagesize($filepath);
$pDim = $imgInfo[0].'x'.$imgInfo[1].' pixels';
-?>
\ No newline at end of file