Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 283)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 284)
@@ -70,4 +70,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/430">#430</a>] Links with a class
 			did generate a span in Firefox when removing them.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/274">#274</a>] The PHP quick upload
+			still tried to use the Upercase types instead of lowercase.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/filemanager/upload/php/upload.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/upload/php/upload.php	(revision 283)
+++ /FCKeditor/trunk/editor/filemanager/upload/php/upload.php	(revision 284)
@@ -87,5 +87,5 @@
 
 if ( $Config['UseFileType'] )
-	$sServerDir .= $sType . '/' ;
+	$sServerDir .= strtolower($sType) . '/' ;
 
 while ( true )
@@ -113,5 +113,5 @@
 
 		if ( $Config['UseFileType'] )
-			$sFileUrl = $Config["UserFilesPath"] . $sType . '/' . $sFileName ;
+			$sFileUrl = $Config["UserFilesPath"] . strtolower($sType) . '/' . $sFileName ;
 		else
 			$sFileUrl = $Config["UserFilesPath"] . $sFileName ;
