summaryrefslogtreecommitdiffstats
path: root/system/libraries/Upload.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2011-09-24 13:45:44 +0200
committerAndrey Andreev <narf@bofh.bg>2011-09-24 13:45:44 +0200
commit420fe0721944ad58a3199b31c92cd896499c8ed1 (patch)
treeb72b9c18ef02af19652d6eacacbe3cbcd8ba8b47 /system/libraries/Upload.php
parent77870b53059d1ee3d761ee54bc5042c560430e36 (diff)
Fix alignment with tabs instead of spaces
Diffstat (limited to 'system/libraries/Upload.php')
-rw-r--r--system/libraries/Upload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php
index a16d5f65d..324747e80 100644
--- a/system/libraries/Upload.php
+++ b/system/libraries/Upload.php
@@ -1060,7 +1060,7 @@ class CI_Upload {
@exec('file --brief --mime-type ' . escapeshellarg($file['tmp_path']), $output, $return_code);
if ($return_code === 0 && strlen($output[0]) > 0) // A return status code != 0 would mean failed execution
{
- $this->file_type = rtrim($output[0]);
+ $this->file_type = rtrim($output[0]);
return;
}
}