Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 4197)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 4198)
@@ -91,4 +91,6 @@
  		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3925">#3925</a>] Removed obsolete
  			parentWindow reference from FCKDialog.OpenDialog().</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2936">#2936</a>] Added protection 
+			in the PHP upload if the destination folder is placed at the root and doesn't exit .</li>
 	</ul>
 	<p>
Index: /FCKeditor/trunk/editor/filemanager/connectors/php/io.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/connectors/php/io.php	(revision 4197)
+++ /FCKeditor/trunk/editor/filemanager/connectors/php/io.php	(revision 4198)
@@ -99,5 +99,5 @@
 
 	// Check if the parent exists, or create it.
-	if ( !file_exists( $sParent ) )
+	if ( !empty($sParent) && !file_exists( $sParent ) )
 	{
 		//prevents agains infinite loop when we can't create root folder
