diff options
| author | Hannes Magnusson <bjori@php.net> | 2011-09-30 14:17:23 +0000 |
|---|---|---|
| committer | Hannes Magnusson <bjori@php.net> | 2011-09-30 14:17:23 +0000 |
| commit | b4f6baf9aa5d77c014eb5304dd334ac1faf59d29 (patch) | |
| tree | ebefe4600551d5c7ca9a341b4523590f1f8ab7ec | |
| parent | 317f933cd664ac1094199b93dd0acad7165c4f96 (diff) | |
| download | php-git-b4f6baf9aa5d77c014eb5304dd334ac1faf59d29.tar.gz | |
Fixed bug #55807 (Wrong value for splFileObject::SKIP_EMPTY)
| -rwxr-xr-x | ext/spl/spl_directory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_directory.h b/ext/spl/spl_directory.h index d04ce3f9b3..58dd3a8d23 100755 --- a/ext/spl/spl_directory.h +++ b/ext/spl/spl_directory.h @@ -117,7 +117,7 @@ static inline spl_filesystem_object* spl_filesystem_iterator_to_object(spl_files #define SPL_FILE_OBJECT_DROP_NEW_LINE 0x00000001 /* drop new lines */ #define SPL_FILE_OBJECT_READ_AHEAD 0x00000002 /* read on rewind/next */ -#define SPL_FILE_OBJECT_SKIP_EMPTY 0x00000006 /* skip empty lines */ +#define SPL_FILE_OBJECT_SKIP_EMPTY 0x00000004 /* skip empty lines */ #define SPL_FILE_OBJECT_READ_CSV 0x00000008 /* read via fgetcsv */ #define SPL_FILE_OBJECT_MASK 0x0000000F /* read via fgetcsv */ |
