ソースを参照

[svn r17246] FS#2867 - FCKEditor: A minor change in the filemanager.

Ivan Tcholakov 16 年 前
コミット
7bb825040b

+ 1 - 1
main/inc/lib/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php

@@ -64,7 +64,7 @@ function GetFoldersAndFiles( $resourceType, $currentFolder )
 
 	while ( $sFile = readdir( $oCurrentFolder ) )
 	{
-		if ( $sFile != '.' && $sFile != '..' )
+		if ( $sFile != '.' && $sFile != '..' && $sFile != '.svn')
 		{
 			if ( is_dir( $sServerDir . $sFile ) )
 				$aFolders[] = '<Folder name="' . ConvertToXmlAttribute( $sFile ) . '" />' ;