diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-07 11:47:05 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-07 11:47:05 +0100 |
commit | 31e5cfd672fe3d37e3a317b71ea207027e4f9353 (patch) | |
tree | 1d91f2b5fcbafc68088978333a84159004077ded /system | |
parent | 0c0a88cafcdce2cb9c9b02f988ab1aae59a43729 (diff) | |
parent | e9b9beee4dc811a9620dc4808c5aae9a9e9ff35d (diff) |
Merge pull request #2859 from vivekdinesh/typo-fix
Typo Fix
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/file_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php index 0587740b1..40c290147 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -298,7 +298,7 @@ if ( ! function_exists('get_file_info')) $fileinfo['readable'] = is_readable($file); break; case 'writable': - // There are known problems using is_weritable on IIS. It may not be reliable - consider fileperms() + // There are known problems using is_writable on IIS. It may not be reliable - consider fileperms() $fileinfo['writable'] = is_writable($file); break; case 'executable': |