diff options
author | Jamie Burchell <jamieburchell@users.noreply.github.com> | 2022-01-28 10:58:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 10:58:27 +0100 |
commit | 8d4b34ed567f21851ad81b1dcd9dc917850e6527 (patch) | |
tree | 303eddc98d1f7dce062e938403ec310f0a412230 | |
parent | f4c2c4cb533b0e9cc7a01d4ff29db829970fd60d (diff) |
Default $final_output to string instead of NULL
Fixes https://github.com/bcit-ci/CodeIgniter/issues/6089
-rw-r--r-- | system/core/Output.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 |