diff options
author | Andrey Andreev <narf@bofh.bg> | 2011-09-24 13:45:44 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-10-27 00:33:49 +0200 |
commit | 7bfb95b9c329a7905a20f9ebfeacccac7ffd7e41 (patch) | |
tree | 33afb0c4db735f7a333b9b133a517a70cc9a2e66 /system | |
parent | 6a12d8faba9dcb4f321700c86d047f7b6a4f1780 (diff) |
Fix alignment with tabs instead of spaces
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php index 04abc9ac6..fd9c8b3e8 100644 --- a/system/libraries/Upload.php +++ b/system/libraries/Upload.php @@ -1058,7 +1058,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; } } |