Fix missing Twig template error if route is excluded but twig is loaded

This commit is contained in:
Flavio Copes 2016-09-15 18:08:52 +02:00
parent cf31dcefe8
commit f945d98cfb
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# v1.2.4
## 09/15/2016
1. [](#bugfix)
* Fix missing Twig template error if route is excluded but twig is loaded
# v1.2.3
## 09/15/2016

View File

@ -115,9 +115,12 @@ class CommentsPlugin extends Plugin
{
$this->calculateEnable();
$this->enable([
'onTwigTemplatePaths' => ['onTwigTemplatePaths', 0],
]);
if ($this->enable) {
$this->enable([
'onTwigTemplatePaths' => ['onTwigTemplatePaths', 0],
'onFormProcessed' => ['onFormProcessed', 0],
'onFormPageHeaderProcessed' => ['onFormPageHeaderProcessed', 0],
'onPageInitialized' => ['onPageInitialized', 10],