Changeset 164

Show
Ignore:
Timestamp:
2007-02-27 09:39:11 (21 months ago)
Author:
fredck
Message:

Fixed type in the recursive call of "RemoveDir".

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/_dev/releaser/fckreleaser.php

    r161 r164  
    103103                # Skip pseudo links to current and parent dirs (./ and ../). 
    104104                if ( preg_match( '/(\.|\.\.)$/', $file ) ) 
    105                         continue; 
     105                        continue ; 
    106106 
    107107                if ( is_file( $file ) ) 
    108108                        unlink( $file ) ; 
    109109                else if ( is_dir( $file ) ) 
    110                         removeDir( $file ) ; 
     110                        RemoveDir( $file ) ; 
    111111        } 
    112112