diff options
author | Songpol Sripao-eiam <sripaoeiam@gmail.com> | 2012-04-01 15:10:35 +0200 |
---|---|---|
committer | Songpol Sripao-eiam <sripaoeiam@gmail.com> | 2012-04-01 15:10:35 +0200 |
commit | 38c0a72169ffbf002c7f3c7fd3b4fd41f0d75f09 (patch) | |
tree | ca0a3709c53ee2e1c081b45d57f38d8ea8e3200e /system/core/Output.php | |
parent | b966701fad01c094199a89f7e4df72d981e5cf48 (diff) |
Fix style coding
Diffstat (limited to 'system/core/Output.php')
-rwxr-xr-x | system/core/Output.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index c0de24bb9..ea39b0223 100755 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -231,7 +231,8 @@ class CI_Output { */ public function get_current_content_type() { - foreach ($this->headers as $header){ + foreach ($this->headers as $header) + { if (preg_match('/^Content-Type/', $header[0])) { return str_replace('Content-Type: ', '', $header[0]); |