From 8d4b34ed567f21851ad81b1dcd9dc917850e6527 Mon Sep 17 00:00:00 2001 From: Jamie Burchell Date: Fri, 28 Jan 2022 09:58:27 +0000 Subject: Default $final_output to string instead of NULL Fixes https://github.com/bcit-ci/CodeIgniter/issues/6089 --- system/core/Output.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') diff --git a/system/core/Output.php b/system/core/Output.php index 7f153ef77..b29794ffa 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -55,7 +55,7 @@ class CI_Output { * * @var string */ - public $final_output; + public $final_output = ''; /** * Cache expiration time -- cgit v1.2.3-24-g4f1b