Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Fixed wrong label of tx_yoastseo_prominent_word table, removed exclude fields from table #562

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This changelog is according to [Keep a Changelog](http://keepachangelog.com).
All notable changes to this project will be documented in this file.
We will follow [Semantic Versioning](http://semver.org/).

## UNRELEASED
### Fixed
- Missing label of the tx_yoastseo_prominent_word table
- Removed exclude=true from tx_yoastseo_prominent_word fields, table already has hideTable

## 9.0.2 September 18, 2023
### Fixed
- Show warning on linking suggestions when the language cannot be retrieved from the content element, use the default language in case "All Languages" is selected
Expand Down
3 changes: 0 additions & 3 deletions Configuration/TCA/tx_yoastseo_prominent_word.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
],
'columns' => [
'stem' => [
'exclude' => 1,
'label' => $llPrefix . 'tx_yoastseo_prominent_word.fields.stem',
'config' => [
'type' => 'input',
Expand All @@ -21,15 +20,13 @@
]
],
'table' => [
'exclude' => 1,
'label' => $llPrefix . 'tx_yoastseo_prominent_word.fields.table',
'config' => [
'type' => 'input',
'size' => 30,
]
],
'weight' => [
'exclude' => 1,
'label' => $llPrefix . 'tx_yoastseo_prominent_word.fields.weight',
'config' => [
'type' => 'input',
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Language/TCA.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<trans-unit id="tx_yoastseo_related_focuskeyword.fields.synonyms" resname="tx_yoastseo_related_focuskeyword.fields.synonyms">
<source>Synonyms</source>
</trans-unit>
<trans-unit id="tx_yoastseo_prominent_word.fields.title" resname="tx_yoastseo_prominent_word.fields.title">
<trans-unit id="tx_yoastseo_prominent_word.title" resname="tx_yoastseo_prominent_word.title">
<source>Yoast SEO Prominent words</source>
</trans-unit>
<trans-unit id="tx_yoastseo_prominent_word.fields.stem" resname="tx_yoastseo_prominent_word.fields.stem">
Expand Down