From b92b34f8933f36992f9d71dbd73cc6936c5d30f1 Mon Sep 17 00:00:00 2001 From: OliverO2 Date: Thu, 18 May 2017 16:16:25 +0200 Subject: [PATCH] Fix output handling in RenderProcessor Ensure that output modifications by subscribers to onOutputGenerated are picked up. --- system/src/Grav/Common/Processors/RenderProcessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Processors/RenderProcessor.php b/system/src/Grav/Common/Processors/RenderProcessor.php index a55b42847a..3248b4e4d9 100644 --- a/system/src/Grav/Common/Processors/RenderProcessor.php +++ b/system/src/Grav/Common/Processors/RenderProcessor.php @@ -28,7 +28,7 @@ public function process() // Set the header type $container->header(); - echo $output; + echo $container->output; // remove any output $container->output = '';