summaryrefslogtreecommitdiffstats
path: root/system/core/Output.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/core/Output.php')
-rw-r--r--system/core/Output.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/system/core/Output.php b/system/core/Output.php
index c56aff4b0..02c6d151b 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -300,9 +300,13 @@ class CI_Output {
public function get_header($header)
{
// Combine headers already sent with our batched headers
+ $headers = array();
+ foreach ($this->headers as $value)
+ {
+ $headers[] = $value[0];
+ }
$headers = array_merge(
- // We only need [x][0] from our multi-dimensional array
- array_map('array_shift', $this->headers),
+ $headers,
headers_list()
);