diff --git a/.travis.yml b/.travis.yml index f3d8911c..a3f7f63f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,6 @@ php: - '7.0' - '7.1' - '7.2' -#- '7.3' env: global: diff --git a/Module.php b/Module.php index 0b1d85f9..3f3d995e 100644 --- a/Module.php +++ b/Module.php @@ -2,6 +2,7 @@ namespace humhub\modules\custom_pages; +use humhub\modules\content\components\ContentContainerModule; use humhub\modules\content\models\Content; use Yii; use humhub\modules\custom_pages\models\Snippet; @@ -12,7 +13,7 @@ use humhub\modules\content\components\ContentContainerActiveRecord; use yii\base\Exception; -class Module extends \humhub\modules\content\components\ContentContainerModule +class Module extends ContentContainerModule { const ICON = 'fa-file-text-o'; const SETTING_MIGRATION_KEY = 'global_pages_migrated_visibility'; diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c0f14358..c77151d2 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,7 @@ Changelog -------------------- - Chg: Added 1.5 defer compatibility - Fix: Fixed "unreachable code after return statement" in humhub.custom_pages.template.TemplateElement.js +- Enh: Improved event handler exception handling 1.0.6 (February 19, 2020) ---------------------