Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1941)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1942)
@@ -52,4 +52,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2039">#2039</a>] Fixed the locking up issue
 			in the Find/Replace dialog.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2124">#2124</a>] PHP file brower: fixed
+			issue with resolving paths on Windows servers with PHP 5.2.4/5.2.5.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/filemanager/connectors/php/io.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/connectors/php/io.php	(revision 1941)
+++ /FCKeditor/trunk/editor/filemanager/connectors/php/io.php	(revision 1942)
@@ -155,4 +155,6 @@
 	}
 	$sRealPath = realpath( './' ) ;
+	// #2124 ensure that no slash is at the end
+	$sRealPath = trim($sRealPath,"\\/");
 
 	$sSelfPath = $_SERVER['PHP_SELF'] ;
