diff --git a/CHANGELOG.md b/CHANGELOG.md index f36cdbd..60e7585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/de/spe ### Fixed - Error when getRootPage don't find a result +- Too short field length for domain in settings +- Missing variable for custom domains ## [0.5.2] diff --git a/README_en.md b/README_en.md index 081b88d..e397da5 100644 --- a/README_en.md +++ b/README_en.md @@ -28,7 +28,7 @@ This is still a pre-release version in the active development and testing phase. ## Requirements * Contao 4.13 or newer (including Contao 5.3) -* PHP 8.0 or newer +* PHP 8.1 or newer * etracker account (chargeable) ## Install diff --git a/contao/dca/tl_page.php b/contao/dca/tl_page.php index bc95b7b..09921ef 100644 --- a/contao/dca/tl_page.php +++ b/contao/dca/tl_page.php @@ -83,7 +83,7 @@ 'inputType' => 'text', 'eval' => [ 'tl_class' => 'w50', - 'maxlength' => 16, + 'maxlength' => 50, ], 'sql' => 'varchar(50) NOT NULL default \'\'', ]; @@ -92,7 +92,7 @@ 'inputType' => 'text', 'eval' => [ 'tl_class' => 'w50', - 'maxlength' => 16, + 'maxlength' => 50, ], 'sql' => 'varchar(50) NOT NULL default \'\'', ]; diff --git a/contao/templates/content_element/etracker_head_code.html.twig b/contao/templates/content_element/etracker_head_code.html.twig index 8ff9198..121056f 100644 --- a/contao/templates/content_element/etracker_head_code.html.twig +++ b/contao/templates/content_element/etracker_head_code.html.twig @@ -3,8 +3,9 @@ -