summaryrefslogtreecommitdiffstats
path: root/system/helpers/file_helper.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-06-03 14:40:30 +0200
committerAndrey Andreev <narf@devilix.net>2014-06-03 14:40:30 +0200
commit1f5090acda137edb29cc649d85c7ef1b75b8f59f (patch)
tree6cb461e74dddda46be0d28399cb7a1e4389637ab /system/helpers/file_helper.php
parentf9201ae527d2c321976658f5c360f7127faa414c (diff)
Fix a potential undefined variable error
Diffstat (limited to 'system/helpers/file_helper.php')
-rw-r--r--system/helpers/file_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php
index 8cfe0f1c1..8fdb5f7cc 100644
--- a/system/helpers/file_helper.php
+++ b/system/helpers/file_helper.php
@@ -80,7 +80,7 @@ if ( ! function_exists('write_file'))
flock($fp, LOCK_EX);
- for ($written = 0, $length = strlen($data); $written < $length; $written += $result)
+ for ($result = $written = 0, $length = strlen($data); $written < $length; $written += $result)
{
if (($result = fwrite($fp, substr($data, $written))) === FALSE)
{