diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-03-03 06:14:56 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-03-03 06:14:56 +0100 |
commit | 626d39f92bb9185ea85daafd6679529d054b85ab (patch) | |
tree | ca3454aea58b6f14b607b811aeeda78fa090f548 /system/helpers | |
parent | 22224b513bf5dcb3f34798f0a9568049966d7ee8 (diff) |
code comments fix
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/file_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php index 2be06ac4f..274c4ad37 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -125,7 +125,7 @@ if ( ! function_exists('delete_files')) if ( ! $current_dir = @opendir($path)) { - return TRUE; + return FALSE; } while(FALSE !== ($filename = @readdir($current_dir))) @@ -218,7 +218,7 @@ if ( ! function_exists('get_filenames')) * * @access public * @param string path to source - * @param bool whether to include the path as part of the filename + * @param bool Look only at the top level directory specified? * @param bool internal variable to determine recursion status - do not use in calls * @return array */ |