diff options
-rw-r--r-- | system/helpers/file_helper.php | 4 | ||||
-rw-r--r-- | user_guide/changelog.html | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php index ef07de76c..0005c2a24 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -184,6 +184,10 @@ if (! function_exists('get_filenames')) }
return $_filedata;
}
+ else
+ {
+ return $FALSE;
+ }
}
}
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index c245c73b5..072843e4c 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -92,6 +92,10 @@ Change Log <li>Escaped the '-' in the default 'permitted_uri_chars' config item, to prevent errors if developers just try to add additional characters to the end of the default expression.</li>
</ul>
</li>
+ <li>Helpers
+ <ul>
+ <li>Modified get_filenames() in the File Helper to return FALSE if the $source_dir is not readable</li>
+ </li>
</ul>
|