From 3be20e26b7d3c0f60bc60b314a85138100edab52 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Mon, 5 May 2008 20:07:09 +0000 Subject: tweak to the new fopen mode constant names --- system/helpers/file_helper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'system/helpers') diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php index 2bcb98b4d..147a7fdf1 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -50,7 +50,7 @@ if (! function_exists('read_file')) return file_get_contents($file); } - if (! $fp = @fopen($file, FOPEN_READ_BOF)) + if (! $fp = @fopen($file, FOPEN_READ)) { return FALSE; } @@ -85,7 +85,7 @@ if (! function_exists('read_file')) */ if (! function_exists('write_file')) { - function write_file($path, $data, $mode = FOPEN_WRITE_CREATE_BOF) + function write_file($path, $data, $mode = FOPEN_WRITE_CREATE_DESTRUCTIVE) { if (! $fp = @fopen($path, $mode)) { -- cgit v1.2.3-24-g4f1b