Changeset 164
- Timestamp:
- 2007-02-27 09:39:11 (21 months ago)
- Files:
-
- 1 modified
-
FCKeditor/trunk/_dev/releaser/fckreleaser.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_dev/releaser/fckreleaser.php
r161 r164 103 103 # Skip pseudo links to current and parent dirs (./ and ../). 104 104 if ( preg_match( '/(\.|\.\.)$/', $file ) ) 105 continue ;105 continue ; 106 106 107 107 if ( is_file( $file ) ) 108 108 unlink( $file ) ; 109 109 else if ( is_dir( $file ) ) 110 removeDir( $file ) ;110 RemoveDir( $file ) ; 111 111 } 112 112