Merge branch 'release/1.2.4'

This commit is contained in:
Flavio Copes 2016-09-15 18:36:39 +02:00
commit 7d8f816bf5
3 changed files with 11 additions and 2 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

@ -1,5 +1,5 @@
name: Comments
version: 1.2.3
version: 1.2.4
description: Adds a commenting functionality to your site
icon: comment
author:

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],