diff options
author | Andrey Andreev <narf@devilix.net> | 2022-02-01 14:24:27 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-02-01 14:25:05 +0100 |
commit | 193df886a54e0cac8416327f763a1e61dc2a3053 (patch) | |
tree | a9008887842d47773fc8a1966202cffccba4c0b3 | |
parent | 6a7254ca653b08e2b73ffd58b18c2bf70b8bd35e (diff) |
Merge pull request #6090 from jamieburchell/patch-1
Default $final_output to string instead of NULL for PHP 8.1 compatibility
-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 8e3245b79..1f3038fc0 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 |