Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 298)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 299)
@@ -80,4 +80,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/324">#324</a>] Improperly nested
 			tags could lead to a crash in IE.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/455">#455</a>] Files and folders
+			with non-ANSI names were returned with a double UTF-8 encoding in the PHP File Manager.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/util.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/util.php	(revision 298)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/util.php	(revision 299)
@@ -37,5 +37,5 @@
 function ConvertToXmlAttribute( $value )
 {
-	return utf8_encode( htmlspecialchars( $value ) ) ;
+	return htmlspecialchars( $value ) ;
 }
 ?>
