Skip to content

Commit

Permalink
[BUGFIX] Allow language synchronization (#48)
Browse files Browse the repository at this point in the history
Releases: master, 9.1, 9.0
  • Loading branch information
NeoBlack committed Apr 17, 2019
1 parent 1ba7068 commit 9006fb9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Configuration/TCA/Overrides/pages.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
'size' => '13',
'eval' => 'datetime',
'default' => '0',
'behaviour' => [
'allowLanguageSynchronization' => true
]
],
],
'publish_date' => [
Expand All @@ -131,6 +134,9 @@
'size' => '13',
'eval' => 'datetime',
'default' => '0',
'behaviour' => [
'allowLanguageSynchronization' => true
]
],
],
'tags' => [
Expand All @@ -148,6 +154,9 @@
'foreign_table_where' => 'AND tx_blog_domain_model_tag.sys_language_uid IN (0,-1) AND tx_blog_domain_model_tag.pid = ###PAGE_TSCONFIG_ID### ORDER BY tx_blog_domain_model_tag.title ASC',
'MM' => 'tx_blog_tag_pages_mm',
'enableMultiSelectFilterTextfield' => 1,
'behaviour' => [
'allowLanguageSynchronization' => true
]
],
],
'authors' => [
Expand All @@ -161,6 +170,9 @@
'MM' => 'tx_blog_post_author_mm',
'minitems' => 0,
'maxitems' => 99999,
'behaviour' => [
'allowLanguageSynchronization' => true
]
],
],
];
Expand Down

0 comments on commit 9006fb9

Please sign in to comment.