diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-02-21 23:19:55 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-02-21 23:19:55 +0100 |
commit | bca400fbd1cccf817bc16c725da2ffe82757b4c7 (patch) | |
tree | a2e646596161d3a929f3ae31ee87ce065b70a799 /system/helpers | |
parent | d9bfc40858998b80beb5ccdb263a0b8fd404c213 (diff) |
fix $FALSE to FALSE
Diffstat (limited to 'system/helpers')
-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 0005c2a24..096d225d7 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -186,7 +186,7 @@ if (! function_exists('get_filenames')) }
else
{
- return $FALSE;
+ return FALSE;
}
}
}
|