diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-16 23:55:42 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-16 23:55:42 +0000 |
commit | 7f9344c4632957d8ea89797eb5ace3bac20c7cd7 (patch) | |
tree | 038aec0171c59566013eee4beda7ab7d1ec7de2b /includes | |
parent | a37d9be1873457bbcbc881b7f5539036c4c5885b (diff) | |
download | brdo-7f9344c4632957d8ea89797eb5ace3bac20c7cd7.tar.gz brdo-7f9344c4632957d8ea89797eb5ace3bac20c7cd7.tar.bz2 |
#230932 follow-up by drewish: Uppercase FALSE constant.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/file.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/file.inc b/includes/file.inc index 2f17d6224..bf14efba9 100644 --- a/includes/file.inc +++ b/includes/file.inc @@ -992,7 +992,7 @@ function file_scan_directory($dir, $mask, $nomask = array('.', '..', 'CVS'), $ca $files = array(); if (is_dir($dir) && $handle = opendir($dir)) { - while (false !== ($file = readdir($handle))) { + while (FALSE !== ($file = readdir($handle))) { if (!in_array($file, $nomask) && $file[0] != '.') { if (is_dir("$dir/$file") && $recurse) { // Give priority to files in this folder by merging them in after any subdirectory files. |