summaryrefslogtreecommitdiffstats
path: root/system/helpers/file_helper.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-05-11 20:18:29 +0200
committerDerek Jones <derek.jones@ellislab.com>2008-05-11 20:18:29 +0200
commita3ffbbb75ab9403941e4f810703313432b3993cc (patch)
tree729f404dbc4ecfee4e06d22cadf493747c11a9fa /system/helpers/file_helper.php
parentc7deac9f2f9e43cedb18202542e8a46061df046e (diff)
Removed closing PHP tags, replaced with a comment block identifying the end of the file
Diffstat (limited to 'system/helpers/file_helper.php')
-rw-r--r--system/helpers/file_helper.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php
index bdde2d55d..fac916f3d 100644
--- a/system/helpers/file_helper.php
+++ b/system/helpers/file_helper.php
@@ -87,7 +87,7 @@ if (! function_exists('write_file'))
{
function write_file($path, $data, $mode = FOPEN_WRITE_CREATE_DESTRUCTIVE)
{
- if (! $fp = @fopen($path, $mode))
+ if (! $fp = fopen($path, $mode))
{
return FALSE;
}
@@ -456,4 +456,6 @@ if (! function_exists('octal_permissions'))
}
}
-?> \ No newline at end of file
+
+/* End of file file_helper.php */
+/* Location: ./system/helpers/file_helper.php */ \ No newline at end of file