diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-05-05 22:07:09 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-05-05 22:07:09 +0200 |
commit | 3be20e26b7d3c0f60bc60b314a85138100edab52 (patch) | |
tree | bd134700b39e5331a190d47684ddf29c11cd951e /system/codeigniter | |
parent | 14031d152b76e7744d6f8a70964ecae77ca55179 (diff) |
tweak to the new fopen mode constant names
Diffstat (limited to 'system/codeigniter')
-rw-r--r-- | system/codeigniter/Common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php index b6a4ce4c5..c5c548cdf 100644 --- a/system/codeigniter/Common.php +++ b/system/codeigniter/Common.php @@ -46,7 +46,7 @@ function is_really_writable($file) {
$file = rtrim($file, '/').'/'.md5(rand(1,100));
- if (($fp = @fopen($file, FOPEN_WRITE_CREATE_EOF)) === FALSE)
+ if (($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)
{
return FALSE;
}
@@ -56,7 +56,7 @@ function is_really_writable($file) @unlink($file);
return TRUE;
}
- elseif (($fp = @fopen($file, FOPEN_WRITE_CREATE_EOF)) === FALSE)
+ elseif (($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)
{
return FALSE;
}
|