Put onOutputRendered back in processor

This commit is contained in:
Andy Miller
2017-05-18 14:16:26 -06:00
parent 890b0280b3
commit f126f3fd53
2 changed files with 2 additions and 2 deletions

View File

@@ -137,8 +137,6 @@ class Grav extends Container
$debugger = $this['debugger'];
$debugger->render();
$this->fireEvent('onOutputRendered');
register_shutdown_function([$this, 'shutdown']);
}

View File

@@ -32,6 +32,8 @@ class RenderProcessor extends ProcessorBase implements ProcessorInterface
// remove any output
$container->output = '';
$this->fireEvent('onOutputRendered');
}
}
}