Kore Nordmann wrote:
>          // Recurse
>          $dh = opendir( $source );
> -        while( $file = readdir( $dh ) )
> +        while ( ( $file = readdir( $dh ) ) !== false )

 Why are we not using a RecursiveDirectoryIterator here?
 opendir() and readdir() are so PHP 4.

-- 
Sebastian Bergmann
System Developer
[EMAIL PROTECTED] | eZ Systems | http://ez.no/

Attachment: signature.asc
Description: OpenPGP digital signature

-- 
Components mailing list
Components@lists.ez.no
http://lists.ez.no/mailman/listinfo/components

Reply via email to