diff options
author | Andrey Andreev <narf@devilix.net> | 2021-12-20 14:47:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 14:47:39 +0100 |
commit | efc96b71e4b1d13d713d8b2be01796b7d30e6f9b (patch) | |
tree | 68a44223c3c9664fbb3bea58c59cde5e3343018d /system/core | |
parent | 16ab872de21dcf938d9c6243d732b0206c8efa7f (diff) | |
parent | e7110e559a0c46d5001368c25ed246ff303d3afe (diff) |
Merge pull request #6074 from philsturgeon/ci3-php8
CodeIgniter 3.0 on PHP 8
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Output.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index c56aff4b0..bbad9f168 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -299,10 +299,14 @@ class CI_Output { */ public function get_header($header) { - // Combine headers already sent with our batched headers + // We only need [x][0] from our multi-dimensional array + $header_lines = array_map(function ($headers) + { + return array_shift($headers); + }, $this->headers); + $headers = array_merge( - // We only need [x][0] from our multi-dimensional array - array_map('array_shift', $this->headers), + $header_lines, headers_list() ); |