Moved onOutputRendered() back into Grav core

This commit is contained in:
Andy Miller
2017-05-17 14:31:59 -06:00
parent 725e6ab303
commit f31f6f8e04
3 changed files with 3 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
* Add timestamp to configuration settings [#1445](https://github.com/getgrav/grav/pull/1445)
1. [](#bugfix)
* Fix an issue saving YAML textarea fields in expert mode [#1480](https://github.com/getgrav/grav/pull/1480)
* Moved `onOutputRendered()` back into Grav core
# v1.3.0-rc.1
## 05/16/2017

View File

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

View File

@@ -30,7 +30,5 @@ class RenderProcessor extends ProcessorBase implements ProcessorInterface
echo $output;
}
$container->fireEvent('onOutputRendered');
}
}