Changeset 1805 for FCKeditor/trunk/editor/filemanager/connectors/php/io.php
- Timestamp:
- 2008-03-26 09:38:26 (8 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/filemanager/connectors/php/io.php
r1797 r1805 230 230 231 231 // Check the current folder syntax (must begin and start with a slash). 232 if ( !preg_match( '|/$|', $sCurrentFolder ) ) 232 if ( !preg_match( '|/$|', $sCurrentFolder ) ) 233 233 $sCurrentFolder .= '/' ; 234 if ( strpos( $sCurrentFolder, '/' ) !== 0 ) 234 if ( strpos( $sCurrentFolder, '/' ) !== 0 ) 235 235 $sCurrentFolder = '/' . $sCurrentFolder ; 236 236