From 16ba82b795f7c171cc8d1abc8fec88ac48135628 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Fri, 7 Nov 2014 18:16:42 -0700 Subject: [PATCH] Set output to public so it can be manipulated in the onOutputGenerated() event --- system/src/Grav/Common/Grav.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/src/Grav/Common/Grav.php b/system/src/Grav/Common/Grav.php index 35c8f6b1f..9ad942e63 100644 --- a/system/src/Grav/Common/Grav.php +++ b/system/src/Grav/Common/Grav.php @@ -25,7 +25,7 @@ class Grav extends Container /** * @var string */ - protected $output; + public $output; /** * @var static @@ -294,7 +294,7 @@ class Grav extends Container */ public function shutdown() { - if($this['config']->get('system.debugger.shutdown.close_connection')) { + if ($this['config']->get('system.debugger.shutdown.close_connection')) { set_time_limit(0); ignore_user_abort(true);