diff options
author | Andrey Andreev <narf@devilix.net> | 2022-02-01 14:24:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 14:24:27 +0100 |
commit | dd249ea85f54f200267bb206e6cee23497cbe2e2 (patch) | |
tree | 303eddc98d1f7dce062e938403ec310f0a412230 /system | |
parent | f4c2c4cb533b0e9cc7a01d4ff29db829970fd60d (diff) | |
parent | 8d4b34ed567f21851ad81b1dcd9dc917850e6527 (diff) |
Merge pull request #6090 from jamieburchell/patch-1
Default $final_output to string instead of NULL for PHP 8.1 compatibility
Diffstat (limited to 'system')
-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 |