Skip to content

Commit

Permalink
Merge pull request #7 from pdir/fix/alexf_tl_articles
Browse files Browse the repository at this point in the history
two lines of code added
  • Loading branch information
MDevster authored Mar 22, 2023
2 parents 8a8e639 + ad16776 commit 8276947
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog
[//]: <> (
Types of changes
Added for new Addeds.
Changed for changes in existing functionality.
Deprecated for soon-to-be removed Addeds.
Removed for now removed Addeds.
Fixed for any bug fixes.
Security in case of vulnerabilities.
)

## [1.4.1](https://github.com/pdir/contao-theme-helper-bundle/tree/4.x) – 2022-12-08

- [Fixed] Fix two missing lines in DCA tl_articles to show permission checkboxes in tl_user_groups.

## [1.4.0](https://github.com/pdir/contao-theme-helper-bundle/tree/1.4.0) – 2021-07-26

- [feature] add support for php 8
- [fix] remove warnings
- [fix] remove warnings
2 changes: 2 additions & 0 deletions src/Resources/contao/dca/tl_article.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
'label' => &$GLOBALS['TL_LANG']['tl_article']['pdir_th_tag'],
'inputType' => 'select',
'search' => true,
'exclude' => true,
'options' => $GLOBALS['tl_config']['theme_tags'],
'reference' => &$GLOBALS['TL_LANG']['tl_article']['th_tags'],
'eval' => array('mandatory'=>false, 'maxlength'=>64, 'tl_class'=>'w50 wizard'),
Expand All @@ -29,6 +30,7 @@
'label' => &$GLOBALS['TL_LANG']['tl_article']['pdir_th_domain'],
'inputType' => 'select',
'search' => true,
'exclude' => true,
'options_callback' => array('tl_article_themeHelper', 'findAllRootPages'),
'reference' => &$GLOBALS['TL_LANG']['tl_article']['th_tags'],
'eval' => array('mandatory'=>false, 'maxlength'=>64, 'tl_class'=>'w50 wizard', 'includeBlankOption' => true),
Expand Down

0 comments on commit 8276947

Please sign in to comment.